File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
dev-packages/e2e-tests/test-applications/node-express-send-to-sentry/tests Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -1127,11 +1127,13 @@ jobs:
11271127 issues : write
11281128 steps :
11291129 - name : Check out current commit
1130+ if : github.ref == 'refs/heads/develop' && contains(needs.*.result, 'failure')
11301131 uses : actions/checkout@v6
11311132 with :
11321133 sparse-checkout : .github
11331134
11341135 - name : Create issues for failed jobs
1136+ if : github.ref == 'refs/heads/develop' && contains(needs.*.result, 'failure')
11351137 uses : actions/github-script@v7
11361138 with :
11371139 script : |
Original file line number Diff line number Diff line change 11import { expect , test } from '@playwright/test' ;
22
3- // TEMPORARY: Guaranteed failure to verify optional test filtering in CI
4- test ( 'TEMPORARY - This optional test should fail without creating an issue' , ( ) => {
5- expect ( true ) . toBe ( false ) ;
6- } ) ;
7-
83const EVENT_POLLING_TIMEOUT = 90_000 ;
94
105const authToken = process . env . E2E_TEST_AUTH_TOKEN ;
You can’t perform that action at this time.
0 commit comments