mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-10-29 22:17:23 +01:00
11 lines
222 B
JavaScript
11 lines
222 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
rootDir: './cli',
|
|
testPathIgnorePatterns: [
|
|
'<rootDir>/commands/run/test.ts',
|
|
'<rootDir>/services/Test.ts',
|
|
'<rootDir>/node_modules'
|
|
]
|
|
}
|