about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorLuke Granger-Brown <git@lukegb.com>2024-01-27 17:02:35 +0000
committerGitHub <noreply@github.com>2024-01-27 17:02:35 +0000
commit0f8804e6a5d21a018af6bf77abcdf1c596bdf4e6 (patch)
tree300d213699e1317910d01cda11eaa95349eadee3 /nixos/tests
parente5a33b929c8ecb11837fa1442d0ba713a79797c8 (diff)
parent04918db10a0691415f50fb939b230c577f1753bd (diff)
Merge pull request #283916 from devusb/fix-pomerium-test
nixos/pomerium: fix UI test
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/pomerium.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/pomerium.nix b/nixos/tests/pomerium.nix
index abaf56c518e05..d0204488e8efd 100644
--- a/nixos/tests/pomerium.nix
+++ b/nixos/tests/pomerium.nix
@@ -1,7 +1,7 @@
 import ./make-test-python.nix ({ pkgs, lib, ... }: {
   name = "pomerium";
   meta = with lib.maintainers; {
-    maintainers = [ lukegb ];
+    maintainers = [ lukegb devusb ];
   };
 
   nodes = let base = myIP: { pkgs, lib, ... }: {
@@ -103,7 +103,7 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: {
     with subtest("ui"):
         pomerium.succeed(
           # check for a string that only appears if the UI is displayed correctly
-            "chromium --no-sandbox --headless --disable-gpu --dump-dom --host-resolver-rules='MAP login.required 127.0.0.1:80' http://login.required/.pomerium | grep 'contact your administrator'"
+            "chromium --no-sandbox --headless --disable-gpu --dump-dom --host-resolver-rules='MAP login.required 127.0.0.1:80' http://login.required/.pomerium | grep 'User Details Not Available'"
         )
   '';
 })