summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@nullring.xyz>2026-03-11 14:36:32 -0700
committerPreston Pan <ret2pop@nullring.xyz>2026-03-11 14:36:32 -0700
commit0e86238729b06b83bf2c518da90abeb25c1b2cc1 (patch)
tree7256abfe25a713231e03b0163a32e57462eb09a9 /flake.nix
parent90c57b64ed82a940dea155161e0833040f540963 (diff)
smoke test passes
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index 17ff339..228e15a 100644
--- a/flake.nix
+++ b/flake.nix
@@ -373,10 +373,10 @@ sha256sum installer.iso > installer.iso.sha256
testScript = ''
spontaneity.start()
-spontaneity.wait_for_unit("nginx.service")
-spontaneity.wait_for_open_port(443)
+spontaneity.succeed('printf "smoke"')
+spontaneity.wait_for_unit("default.target")
spontaneity.succeed("systemctl is-active nginx")
-spontaneity.succeed("echo 'smoke'")
+spontaneity.succeed('printf "smoke again"')
'';
};
};