microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
ts/jest.config.js
12lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | /** @type {import('ts-jest').JestConfigWithTsJest} */ |
| 5 | module.exports = { |
| 6 | testMatch: ["**/dist/test/**/*.(spec|test).js?(x)"], |
| 7 | testEnvironment: "node", |
| 8 | moduleNameMapper: { |
| 9 | "^../src/(.*)$": "<rootDir>/dist/$1", |
| 10 | }, |
| 11 | testTimeout: 90000, |
| 12 | }; |