1import ./make-test-python.nix ({ lib, ... }:
2
3with lib;
4
5{
6 name = "prowlarr";
7 meta.maintainers = with maintainers; [ jdreaver ];
8
9 nodes.machine =
10 { pkgs, ... }:
11 { services.prowlarr.enable = true; };
12
13 testScript = ''
14 machine.wait_for_unit("prowlarr.service")
15 machine.wait_for_open_port(9696)
16 machine.succeed("curl --fail http://localhost:9696/")
17 '';
18})