Skip to content

Commit 15ee68a

Browse files
authored
Merge pull request #241 from testing-library/extension
fix: add extensions on imports
2 parents e79c857 + 71d488d commit 15ee68a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { act, cleanup } from './pure'
1+
import { act, cleanup } from './pure.js'
22

33
// If we're running in a test runner that supports afterEach
44
// then we'll automatically run cleanup afterEach test
@@ -12,4 +12,4 @@ if (typeof afterEach === 'function' && !process.env.STL_SKIP_AUTO_CLEANUP) {
1212
})
1313
}
1414

15-
export * from './pure'
15+
export * from './pure.js'

src/test-setup.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as matchers from '@testing-library/jest-dom/dist/matchers'
22
import { afterEach, expect } from 'vitest'
33

4-
import { act, cleanup } from './pure'
4+
import { act, cleanup } from './pure.js'
55

66
expect.extend(matchers)
77

0 commit comments

Comments
 (0)