Skip to content

Commit

Permalink
fix(examples): correctly import jest-dom types
Browse files Browse the repository at this point in the history
  • Loading branch information
diego-aquino committed Aug 25, 2024
1 parent 7f68af3 commit fa80b1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/with-vitest-browser/tests/setup.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import '@testing-library/jest-dom/vitest';
import '@testing-library/jest-dom';

import { beforeAll, afterEach, afterAll } from 'vitest';

Expand Down
2 changes: 1 addition & 1 deletion examples/with-vitest-jsdom/tests/setup.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import '@testing-library/jest-dom/vitest';
import '@testing-library/jest-dom';

import { beforeAll, afterEach, afterAll } from 'vitest';

Expand Down

0 comments on commit fa80b1a

Please sign in to comment.