1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00
nixpkgs/nixos/tests/komga.nix

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

21 lines
412 B
Nix
Raw Normal View History

2022-08-12 22:52:52 +01:00
import ./make-test-python.nix ({ lib, ... }:
{
name = "komga";
meta.maintainers = with lib.maintainers; [ govanify ];
2022-08-12 22:52:52 +01:00
nodes.machine =
{ pkgs, ... }:
{ services.komga = {
enable = true;
port = 1234;
};
};
testScript = ''
machine.wait_for_unit("komga.service")
machine.wait_for_open_port(1234)
machine.succeed("curl --fail http://localhost:1234/")
'';
})