Skip to content

Commit 73213f4

Browse files
committed
Convert jest.config.js to jest.config.cjs
1 parent 9c3d6ae commit 73213f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jest.config.js renamed to jest.config.cjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
export default {
1+
module.exports = {
2+
preset: null,
23
testEnvironment: 'node',
34
transform: {},
45
testMatch: ['<rootDir>/tests/**/*.test.js'],
@@ -17,7 +18,6 @@ export default {
1718
},
1819
setupFilesAfterEnv: ['<rootDir>/tests/helpers/setup.js'],
1920
testTimeout: 30000,
20-
// Handle ES module imports properly
2121
moduleFileExtensions: ['js', 'json'],
2222
testPathIgnorePatterns: ['/node_modules/', '/dist/'],
2323
coveragePathIgnorePatterns: ['/node_modules/', '/dist/', '/tests/'],

0 commit comments

Comments
 (0)