1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/jest.config.js

11 lines
222 B
JavaScript
Raw Normal View History

module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
rootDir: './cli',
testPathIgnorePatterns: [
'<rootDir>/commands/run/test.ts',
'<rootDir>/services/Test.ts',
'<rootDir>/node_modules'
]
}