Skip to content

Commit d288d50

Browse files
j
1 parent e92d55d commit d288d50

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v4
20-
- uses: step-security/jest-coverage-report-action@v2
20+
- uses: step-security/jest-coverage-report-action@fix_RemoveVuln

__tests__/example.test.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ test('adds 2 + 2 to equal 4', () => {
88
expect(2 + 2).toBe(4);
99
});
1010

11-
test('adds 2 + 2 to equal 5', () => {
11+
test('adds 2 + 2 to equal 5', () => {
1212
expect(2 + 3).toBe(5);
13+
});
14+
test('adds 2 + 4 to equal 6', () => {
15+
expect(2 + 4).toBe(6);
1316
});

0 commit comments

Comments
 (0)