nixpkgs/nixos/tests/uptime-kuma.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
385 B
Nix
Raw Permalink Normal View History

{ lib, ... }:
2022-09-23 07:04:23 +02:00
{
name = "uptime-kuma";
meta.maintainers = with lib.maintainers; [ julienmalka ];
2022-09-23 07:04:23 +02:00
nodes.machine =
{ pkgs, ... }:
{
services.uptime-kuma.enable = true;
};
2022-09-23 07:04:23 +02:00
testScript = ''
machine.start()
machine.wait_for_unit("uptime-kuma.service")
machine.wait_for_open_port(3001)
machine.succeed("curl --fail http://localhost:3001/")
'';
}