test(schematics): bumped up test timeout

This commit is contained in:
vsavkin 2017-12-03 15:09:59 -05:00
parent 9e9e7360e8
commit 7e479bedf2
5 changed files with 7 additions and 7 deletions

View File

@ -28,7 +28,7 @@ describe('Nrwl Workspace', () => {
runCLI('build --aot');
expect(runCLI('test --single-run')).toContain('Executed 2 of 2 SUCCESS');
},
100000
1000000
);
it(
@ -41,7 +41,7 @@ describe('Nrwl Workspace', () => {
runCLI('build --aot');
expect(runCLI('test --single-run')).toContain('Executed 2 of 2 SUCCESS');
},
100000
1000000
);
it(
@ -54,6 +54,6 @@ describe('Nrwl Workspace', () => {
runCLI('build --aot');
expect(runCLI('test --single-run')).toContain('Executed 2 of 2 SUCCESS');
},
100000
1000000
);
});

View File

@ -14,6 +14,6 @@ describe('DowngradeModule', () => {
runCLI('build');
expect(runCLI('test --single-run')).toContain('Executed 1 of 1 SUCCESS');
},
100000
1000000
);
});

View File

@ -51,6 +51,6 @@ describe('ngrx', () => {
runCLI('build');
runCLI('test --single-run');
},
100000
1000000
);
});

View File

@ -25,6 +25,6 @@ describe('Lint', () => {
expect(out).toContain('relative imports of libraries are forbidden');
expect(out).toContain('import of lazy-loaded libraries are forbidden');
},
100000
1000000
);
});

View File

@ -31,6 +31,6 @@ describe('Upgrade', () => {
runCLI('build');
runCLI('test --single-run');
},
100000
1000000
);
});