-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
955dcfe
commit babe149
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,11 +16,13 @@ test.describe("SAML tests", () => { | |
// TODO: Figure out a way to use the users from fixtures here, right now we cannot set | ||
// the SAML_ADMINS env variables dynamically | ||
await login({ username: "pro", email: "[email protected]", password: "pro" }, page); | ||
const shellLocator = page.locator(`[data-testid=dashboard-shell]`); | ||
await page.waitForURL("/event-types"); | ||
await expect(shellLocator).toBeVisible(); | ||
// eslint-disable-next-line playwright/no-skipped-test | ||
// Try to go Security page | ||
await page.goto("/settings/security/sso"); | ||
// It should redirect you to the event-types page | ||
// await page.waitForSelector("[data-testid=saml_config]"); | ||
await page.waitForSelector("[data-testid=saml_config]"); | ||
}); | ||
|
||
test.describe("SAML Signup Flow Test", async () => { | ||
|