Skip to content

Commit 9c86b21

Browse files
committed
Revert "test"
This reverts commit dc939a7.
1 parent dc939a7 commit 9c86b21

2 files changed

Lines changed: 2 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1158,15 +1158,15 @@ jobs:
11581158
checks: read
11591159
steps:
11601160
- name: Check out current commit
1161-
if: contains(needs.*.result, 'failure')
1161+
if: github.ref == 'refs/heads/develop' && contains(needs.*.result, 'failure')
11621162
uses: actions/checkout@v6
11631163
with:
11641164
sparse-checkout: |
11651165
.github
11661166
scripts
11671167
11681168
- name: Create issues for failed jobs
1169-
if: contains(needs.*.result, 'failure')
1169+
if: github.ref == 'refs/heads/develop' && contains(needs.*.result, 'failure')
11701170
uses: actions/github-script@v7
11711171
with:
11721172
script: |

packages/core/test/lib/session.test.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ import type { SessionContext } from '../../src/types-hoist/session';
44
import { timestampInSeconds } from '../../src/utils/time';
55

66
describe('Session', () => {
7-
// TEMPORARY: Guaranteed failure to verify issue creation in CI
8-
it('TEMPORARY - should fail to test annotation extraction', () => {
9-
expect(true).toBe(false);
10-
});
11-
127
it('initializes with the proper defaults', () => {
138
const newSession = makeSession();
149
const session = newSession.toJSON();

0 commit comments

Comments
 (0)