Skip to content

Commit

Permalink
test(schematics): bumped up test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
vsavkin committed Dec 3, 2017
1 parent 9e9e736 commit 7e479be
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions e2e/schematics/application.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe('Nrwl Workspace', () => {
runCLI('build --aot');
expect(runCLI('test --single-run')).toContain('Executed 2 of 2 SUCCESS');
},
100000
1000000
);

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

it(
Expand All @@ -54,6 +54,6 @@ describe('Nrwl Workspace', () => {
runCLI('build --aot');
expect(runCLI('test --single-run')).toContain('Executed 2 of 2 SUCCESS');
},
100000
1000000
);
});
2 changes: 1 addition & 1 deletion e2e/schematics/downgrade-module.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ describe('DowngradeModule', () => {
runCLI('build');
expect(runCLI('test --single-run')).toContain('Executed 1 of 1 SUCCESS');
},
100000
1000000
);
});
2 changes: 1 addition & 1 deletion e2e/schematics/ngrx.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ describe('ngrx', () => {
runCLI('build');
runCLI('test --single-run');
},
100000
1000000
);
});
2 changes: 1 addition & 1 deletion e2e/schematics/tslint.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
});
2 changes: 1 addition & 1 deletion e2e/schematics/upgrade-module.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ describe('Upgrade', () => {
runCLI('build');
runCLI('test --single-run');
},
100000
1000000
);
});

0 comments on commit 7e479be

Please sign in to comment.