AstroCol/jest.config.cjs

12 lines
269 B
JavaScript
Raw Permalink Normal View History

2024-06-01 13:58:57 +00:00
require('dotenv').config()
module.exports = {
preset: 'ts-jest',
transform: {
'^.+\\.(ts|tsx)?$': 'ts-jest',
'^.+\\.(js|jsx)$': 'babel-jest',
},
testEnvironment: 'node',
rootDir: '.',
testMatch: ['<rootDir>/test/**/*.test.ts'],
};