1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-11-09 22:08:58 +01:00
programming-challenges/jest.config.json

15 lines
342 B
JSON
Raw Normal View History

{
"testEnvironment": "node",
2022-02-19 18:30:29 +01:00
"resolver": "jest-ts-webcompat-resolver",
"transform": {
"^.+\\.(t|j)sx?$": ["@swc/jest"]
},
"rootDir": "./cli",
"testPathIgnorePatterns": [
"<rootDir>/commands/run/test.ts",
"<rootDir>/services/Test.ts",
"<rootDir>/node_modules"
2021-12-06 17:18:14 +01:00
],
2022-02-19 18:30:29 +01:00
"setupFiles": ["<rootDir>/__test__/setup.ts"]
}