python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / tests / n8n.nix
blobc1753a418f673a63ab89ecb469a429fb4a765dc3
1 import ./make-test-python.nix ({ lib, ... }:
3 with lib;
5 let
6   port = 5678;
7 in
9   name = "n8n";
10   meta.maintainers = with maintainers; [ freezeboy k900 ];
12   nodes.machine =
13     { pkgs, ... }:
14     {
15       services.n8n = {
16         enable = true;
17       };
18     };
20   testScript = ''
21     machine.wait_for_unit("n8n.service")
22     machine.wait_for_open_port(${toString port})
23     machine.succeed("curl --fail http://localhost:${toString port}/")
24   '';