Skip to content

Commit cdc1672

Browse files
committed
fix: convert jest.config.js to jest.config.mjs
1 parent bca4371 commit cdc1672

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

jest.config.js renamed to jest.config.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
/** @typedef {import('ts-jest/dist/types')} */
44
/** @type {import('@jest/types').Config.InitialOptions} */
5-
module.exports = {
5+
// eslint-disable-next-line import/no-default-export
6+
export default {
67
displayName: 'test',
78
preset: 'ts-jest',
89
testMatch: ['<rootDir>/test/**/*.test.ts?(x)'],

0 commit comments

Comments
 (0)