mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
15 lines
401 B
Nix
15 lines
401 B
Nix
import ./make-test-python.nix ({ lib, ... }: {
|
|
name = "homepage-dashboard";
|
|
meta.maintainers = with lib.maintainers; [ jnsgruk ];
|
|
|
|
nodes.machine = { pkgs, ... }: {
|
|
services.homepage-dashboard.enable = true;
|
|
};
|
|
|
|
testScript = ''
|
|
machine.wait_for_unit("homepage-dashboard.service")
|
|
machine.wait_for_open_port(8082)
|
|
machine.succeed("curl --fail http://localhost:8082/")
|
|
'';
|
|
})
|