From d3e283460429e15c747c4d1d29390e67b73b7703 Mon Sep 17 00:00:00 2001 From: ibizaman Date: Mon, 12 Jan 2026 09:15:10 +0100 Subject: [PATCH] pinchflat: remove test for unsupported admin only user --- test/services/pinchflat.nix | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/test/services/pinchflat.nix b/test/services/pinchflat.nix index 18475e7..a05c14c 100644 --- a/test/services/pinchflat.nix +++ b/test/services/pinchflat.nix @@ -130,22 +130,7 @@ let "expect(page.get_by_text('Create a media profile')).to_be_visible()" ]; } - { - username = "bob"; - password = "NotBobPassword"; - nextPageExpect = [ - "expect(page.get_by_text(re.compile('[Ii]ncorrect'))).to_be_visible()" - ]; - } - { - username = "bob"; - password = "BobPassword"; - nextPageExpect = [ - "expect(page.get_by_text(re.compile('[Ii]ncorrect'))).not_to_be_visible()" - "expect(page.get_by_role('button', name=re.compile('Sign In'))).not_to_be_visible()" - "expect(page.get_by_text('Create a media profile')).to_be_visible()" - ]; - } + # Bob, with its admin role only, cannot login into Karakeep because admins do not exist in Karakeep. { username = "charlie"; password = "NotCharliePassword";