Skip to content

Commit 00550ef

Browse files
committed
test: add e2e test case for ESM features
1 parent 978169b commit 00550ef

7 files changed

+78
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import jsonImportAssertion from '../src/foo.json' assert { type: 'json' }
2+
3+
const topLevelAwait = await import('../src/foo.json')
4+
5+
const itWithRunNode18Above = (...args: Parameters<typeof it>) => {
6+
const [major] = process.versions.node.split('.').map(Number)
7+
if (major > 16) {
8+
// eslint-disable-next-line jest/valid-title,jest/expect-expect,jest/no-disabled-tests
9+
return it(...args)
10+
}
11+
12+
// eslint-disable-next-line jest/valid-title,jest/expect-expect,jest/no-disabled-tests
13+
return it.skip(...args)
14+
}
15+
16+
describe('esm-features', () => {
17+
it('should work with import.meta', () => {
18+
expect(import.meta.jest).toBeDefined()
19+
})
20+
21+
it('should work with import assertion', () => {
22+
expect(jsonImportAssertion.name).toBe('hello')
23+
})
24+
25+
itWithRunNode18Above('should work with import attributes', async () => {
26+
const jsonImportAttrs = await import('../src/foo.json', { with: { type: 'json' } })
27+
// eslint-disable-next-line jest/no-standalone-expect
28+
expect(jsonImportAttrs.default.name).toBe('hello')
29+
})
30+
31+
it('should work with top-level await', () => {
32+
expect(topLevelAwait.default.name).toBe('hello')
33+
})
34+
})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { type JestConfigWithTsJest, TS_TRANSFORM_PATTERN } from 'ts-jest'
2+
3+
export default {
4+
displayName: 'esm-features-compiler-esm',
5+
extensionsToTreatAsEsm: ['.ts'],
6+
transform: {
7+
[TS_TRANSFORM_PATTERN]: [
8+
'ts-jest',
9+
{
10+
tsconfig: '<rootDir>/tsconfig-esm.spec.json',
11+
useESM: true,
12+
},
13+
],
14+
},
15+
} satisfies JestConfigWithTsJest
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { type JestConfigWithTsJest, TS_TRANSFORM_PATTERN } from 'ts-jest'
2+
3+
export default {
4+
displayName: 'esm-features-transpiler-esm',
5+
extensionsToTreatAsEsm: ['.ts'],
6+
transform: {
7+
[TS_TRANSFORM_PATTERN]: [
8+
'ts-jest',
9+
{
10+
tsconfig: '<rootDir>/tsconfig-esm.spec.json',
11+
isolatedModules: true,
12+
useESM: true,
13+
},
14+
],
15+
},
16+
} satisfies JestConfigWithTsJest

e2e/esm-features/package.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"name": "esm-features",
3+
"private": true
4+
}

e2e/esm-features/src/foo.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name": "hello"
3+
}
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "./tsconfig.json"
3+
}

e2e/esm-features/tsconfig.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "../tsconfig-esm.spec.json"
3+
}

0 commit comments

Comments
 (0)