blob: 7315aef624017b487561e14161ee8be31b03c93e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import ./make-test-python.nix ({ pkgs, ... }: {
name = "navidrome";
nodes.machine = { ... }: {
services.navidrome.enable = true;
};
testScript = ''
machine.wait_for_unit("navidrome")
machine.wait_for_open_port(4533)
'';
})
|