-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔧 [#724] Configure test setup for jest compatibility
* Ensure the test globals are injected (vitest doesn't do this by default) * Point to setup file to ensure jest matchers are registered (requires them to be registered as globals first)
- Loading branch information
1 parent
a95f466
commit 8620c3b
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// jest-dom adds custom jest matchers for asserting on DOM nodes. | ||
// allows you to do things like: | ||
// expect(element).toHaveTextContent(/react/i) | ||
// learn more: https://github.com/testing-library/jest-dom | ||
import '@testing-library/jest-dom'; | ||
|
||
import mswServer from 'api-mocks/msw-server'; | ||
|
||
beforeAll(() => mswServer.listen()); | ||
afterEach(() => mswServer.resetHandlers()); | ||
afterAll(() => mswServer.close()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters