diff --git a/test/auth.test.ts b/test/auth.test.ts index 53812fe4..b0e0a9f6 100644 --- a/test/auth.test.ts +++ b/test/auth.test.ts @@ -135,3 +135,17 @@ test("can sign out", async ({ context }) => { await herb.signOut() await herb.expect.toBeLoggedOut() }) + +test.fixme("user can create two DevResults teams", async ({ context }) => { + // this test was built to debug a specific bug where a single user + // was unable to create a devresults team, log out and then create a + // second devresults team + const herb = await newBrowser(context) + await herb.createTeam("herb", "DevResults") + await herb.expect.toBeLoggedIn("Herb") + await herb.signOut() + await herb.expect.toBeLoggedOut() + await herb.pressButton("Sign in again") + await herb.createTeam("herb", "DevResults") + await herb.expect.toBeLoggedIn("Herb") +})