mirror of
https://github.com/warmbly/warmbly.git
synced 2026-09-10 08:06:04 +00:00
9 lines
223 B
JavaScript
9 lines
223 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
roots: ['<rootDir>/src', '<rootDir>/test'],
|
|
testMatch: ['**/*.test.ts'],
|
|
testTimeout: 30000,
|
|
};
|