File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 78
78
name : test-results
79
79
path : src/e2e/test-results/
80
80
retention-days : 30
81
+
81
82
- name : Send GitHub Action trigger data to Slack workflow
82
83
id : slack
83
84
91
92
"type": "section",
92
93
"text": {
93
94
"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>*"
95
96
}
96
97
},
97
98
{
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ export default defineConfig({
48
48
fullyParallel : true ,
49
49
50
50
/* 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,
52
52
53
53
/* Retry on CI only */
54
54
retries : process . env . CI ? 2 : 0 ,
Original file line number Diff line number Diff line change @@ -42,12 +42,13 @@ test.describe(`${process.env.E2E_TEST_ENV} - Authentication flow verification @s
42
42
) ;
43
43
} ) ;
44
44
45
- test ( "Verify sign in with existing user" , async ( {
45
+ test . only ( "Verify sign in with existing user" , async ( {
46
46
page,
47
47
authPage,
48
48
landingPage,
49
49
dashboardPage,
50
50
} , testInfo ) => {
51
+ test . fail ( ) ;
51
52
// speed up test by ignore non necessary requests
52
53
await page . route ( / ( a n a l y t i c s ) / , async ( route ) => {
53
54
await route . abort ( ) ;
You can’t perform that action at this time.
0 commit comments