⚡️(CI) only e2e chrome mandatory
To speed up pull request flow, put e2e tests only mandatory for Chrome. We still have tests for Firefox and Webkit, but they are not mandatory. They will still have to be checked regularly, particularly during the deployment phase.
This commit is contained in:
@@ -17,3 +17,11 @@ setup('authenticate-webkit', async ({ page }) => {
|
||||
.context()
|
||||
.storageState({ path: `playwright/.auth/user-webkit.json` });
|
||||
});
|
||||
|
||||
setup('authenticate-firefox', async ({ page }) => {
|
||||
await page.goto('/');
|
||||
await keyCloakSignIn(page, 'firefox');
|
||||
await page
|
||||
.context()
|
||||
.storageState({ path: `playwright/.auth/user-firefox.json` });
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user