Skip to content

Commit edd2c14

Browse files
committed
force failures testing
1 parent 58d3ba4 commit edd2c14

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/e2e_cron.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ jobs:
7878
name: test-results
7979
path: src/e2e/test-results/
8080
retention-days: 30
81+
8182
- name: Send GitHub Action trigger data to Slack workflow
8283
id: slack
8384
uses: slackapi/[email protected]
@@ -91,7 +92,7 @@ jobs:
9192
"type": "section",
9293
"text": {
9394
"type": "mrkdwn",
94-
"text": "*Link to job:* *<https://github.com/mozilla/blurts-server/actions/runs/${{ github.run_id }}|Relay e2e tests>*"
95+
"text": "*Link to job:* *<https://github.com/mozilla/blurts-server/actions/runs/${{ github.run_id }}|Monitor e2e tests>*"
9596
}
9697
},
9798
{

playwright.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export default defineConfig({
4848
fullyParallel: true,
4949

5050
/* Fail the build on CI if you accidentally left test.only in the source code. */
51-
forbidOnly: !!process.env.CI,
51+
// forbidOnly: !!process.env.CI,
5252

5353
/* Retry on CI only */
5454
retries: process.env.CI ? 2 : 0,

src/e2e/specs/auth.spec.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,13 @@ test.describe(`${process.env.E2E_TEST_ENV} - Authentication flow verification @s
4242
);
4343
});
4444

45-
test("Verify sign in with existing user", async ({
45+
test.only("Verify sign in with existing user", async ({
4646
page,
4747
authPage,
4848
landingPage,
4949
dashboardPage,
5050
}, testInfo) => {
51+
test.fail();
5152
// speed up test by ignore non necessary requests
5253
await page.route(/(analytics)/, async (route) => {
5354
await route.abort();

0 commit comments

Comments
 (0)