From 7e479bedf20c6924c468a55720c8f8c96e9bcd4c Mon Sep 17 00:00:00 2001 From: vsavkin Date: Sun, 3 Dec 2017 15:09:59 -0500 Subject: [PATCH] test(schematics): bumped up test timeout --- e2e/schematics/application.test.ts | 6 +++--- e2e/schematics/downgrade-module.test.ts | 2 +- e2e/schematics/ngrx.test.ts | 2 +- e2e/schematics/tslint.test.ts | 2 +- e2e/schematics/upgrade-module.test.ts | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/e2e/schematics/application.test.ts b/e2e/schematics/application.test.ts index cd4ad8339ca11..1cc6de6a77c1c 100644 --- a/e2e/schematics/application.test.ts +++ b/e2e/schematics/application.test.ts @@ -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 ); }); diff --git a/e2e/schematics/downgrade-module.test.ts b/e2e/schematics/downgrade-module.test.ts index 289c96e8b1751..4a7392b6f1239 100644 --- a/e2e/schematics/downgrade-module.test.ts +++ b/e2e/schematics/downgrade-module.test.ts @@ -14,6 +14,6 @@ describe('DowngradeModule', () => { runCLI('build'); expect(runCLI('test --single-run')).toContain('Executed 1 of 1 SUCCESS'); }, - 100000 + 1000000 ); }); diff --git a/e2e/schematics/ngrx.test.ts b/e2e/schematics/ngrx.test.ts index 2d5586b7ced70..66a66998cb14f 100644 --- a/e2e/schematics/ngrx.test.ts +++ b/e2e/schematics/ngrx.test.ts @@ -51,6 +51,6 @@ describe('ngrx', () => { runCLI('build'); runCLI('test --single-run'); }, - 100000 + 1000000 ); }); diff --git a/e2e/schematics/tslint.test.ts b/e2e/schematics/tslint.test.ts index fb96ce7a7133f..85a27d926efca 100644 --- a/e2e/schematics/tslint.test.ts +++ b/e2e/schematics/tslint.test.ts @@ -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 ); }); diff --git a/e2e/schematics/upgrade-module.test.ts b/e2e/schematics/upgrade-module.test.ts index 06ea5f2838058..899f743799441 100644 --- a/e2e/schematics/upgrade-module.test.ts +++ b/e2e/schematics/upgrade-module.test.ts @@ -31,6 +31,6 @@ describe('Upgrade', () => { runCLI('build'); runCLI('test --single-run'); }, - 100000 + 1000000 ); });