Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions test/auth.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
})
Loading