Skip to content

Commit 3e5da44

Browse files
authored
chore: testing workflow with failed test
1 parent 94ca5f2 commit 3e5da44

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@ jobs:
2323
node-version: ${{ matrix.node-version }}
2424
- name: Install package
2525
run: yarn install
26-
- name: Link step 1
27-
run: npm link
28-
- name: Link step 2
29-
working-directory: ./testing-app
30-
run: npm link @ryfylke-react/rtk-query-loader --force
3126
- name: Install testing-app
3227
working-directory: ./testing-app
3328
run: yarn install

testing-app/src/tests.test.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,5 +285,9 @@ describe("withLoader", () => {
285285
expect(screen.getByText(/charizard/i)).toBeVisible();
286286
expect(screen.getByText(/pikachu/i)).toBeVisible();
287287
});
288+
test("Should throw", () => {
289+
expect(false).toBeTruthy();
290+
});
288291
});
292+
289293
});

0 commit comments

Comments
 (0)