We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e79c857 + 71d488d commit 15ee68aCopy full SHA for 15ee68a
src/index.js
@@ -1,4 +1,4 @@
1
-import { act, cleanup } from './pure'
+import { act, cleanup } from './pure.js'
2
3
// If we're running in a test runner that supports afterEach
4
// then we'll automatically run cleanup afterEach test
@@ -12,4 +12,4 @@ if (typeof afterEach === 'function' && !process.env.STL_SKIP_AUTO_CLEANUP) {
12
})
13
}
14
15
-export * from './pure'
+export * from './pure.js'
src/test-setup.js
@@ -1,7 +1,7 @@
import * as matchers from '@testing-library/jest-dom/dist/matchers'
import { afterEach, expect } from 'vitest'
5
6
expect.extend(matchers)
7
0 commit comments