File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
dev-packages/e2e-tests/test-applications/node-express-send-to-sentry/tests Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -1127,13 +1127,11 @@ jobs:
11271127 issues : write
11281128 steps :
11291129 - name : Check out current commit
1130- if : github.ref == 'refs/heads/develop' && contains(needs.*.result, 'failure')
11311130 uses : actions/checkout@v6
11321131 with :
11331132 sparse-checkout : .github
11341133
11351134 - name : Create issues for failed jobs
1136- if : github.ref == 'refs/heads/develop' && contains(needs.*.result, 'failure')
11371135 uses : actions/github-script@v7
11381136 with :
11391137 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+
38const EVENT_POLLING_TIMEOUT = 90_000 ;
49
510const authToken = process . env . E2E_TEST_AUTH_TOKEN ;
You can’t perform that action at this time.
0 commit comments