Skip to content

Commit 7996632

Browse files
committed
Revert "test"
This reverts commit 19f9b39.
1 parent 19f9b39 commit 7996632

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/build.yml

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

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

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

105
const authToken = process.env.E2E_TEST_AUTH_TOKEN;

0 commit comments

Comments
 (0)