18 lines
407 B
Nix
18 lines
407 B
Nix
|
import ./make-test-python.nix ({ lib, ... }:
|
||
|
|
||
|
{
|
||
|
name = "uptime-kuma";
|
||
|
meta.maintainers = with lib.maintainers; [ julienmalka ];
|
||
|
|
||
|
nodes.machine =
|
||
|
{ pkgs, ... }:
|
||
|
{ services.uptime-kuma.enable = true; };
|
||
|
|
||
|
testScript = ''
|
||
|
machine.start()
|
||
|
machine.wait_for_unit("uptime-kuma.service")
|
||
|
machine.wait_for_open_port(3001)
|
||
|
machine.succeed("curl --fail http://localhost:3001/")
|
||
|
'';
|
||
|
})
|