1{ lib, ... }:
2{
3 name = "actual";
4 meta.maintainers = [ lib.maintainers.oddlama ];
5
6 nodes.machine =
7 { ... }:
8 {
9 services.actual.enable = true;
10 };
11
12 testScript = ''
13 machine.wait_for_open_port(3000)
14 machine.succeed("curl -fvvv -Ls http://localhost:3000/ | grep 'Actual'")
15 '';
16}