Skip to content

Commit 19f9b39

Browse files
committed
test
1 parent 948ae25 commit 19f9b39

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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: |

dev-packages/e2e-tests/test-applications/node-express-send-to-sentry/tests/send-to-sentry.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
import { 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+
38
const EVENT_POLLING_TIMEOUT = 90_000;
49

510
const authToken = process.env.E2E_TEST_AUTH_TOKEN;

0 commit comments

Comments
 (0)