fix(repo): set timeout in a wrong config

This commit is contained in:
Victor Savkin 2020-11-18 20:49:09 -05:00 committed by Victor Savkin
parent a55e7cae52
commit 6ee16bae17
2 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,4 @@
module.exports = { module.exports = {
testTimeout: 30000,
projects: [ projects: [
'<rootDir>/packages/tao', '<rootDir>/packages/tao',
'<rootDir>/packages/workspace', '<rootDir>/packages/workspace',

View File

@ -1,6 +1,7 @@
const nxPreset = require('@nrwl/jest/preset'); const nxPreset = require('@nrwl/jest/preset');
module.exports = { module.exports = {
...nxPreset, ...nxPreset,
testTimeout: 30000,
testMatch: ['**/+(*.)+(spec|test).+(ts|js)?(x)'], testMatch: ['**/+(*.)+(spec|test).+(ts|js)?(x)'],
transform: { transform: {
'^.+\\.(ts|js|html)$': 'ts-jest', '^.+\\.(ts|js|html)$': 'ts-jest',