Skip to content

Commit

Permalink
test(@angular-devkit/build-angular): remove unneeded flag from test
Browse files Browse the repository at this point in the history
  • Loading branch information
filipesilva authored and alexeagle committed Nov 1, 2018
1 parent 9b26f9b commit e4c0151
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ describe('Browser Builder rebuilds', () => {
// Add a major static analysis error on a non-main file to the initial build.
host.replaceInFile('./src/app/app.component.ts', `'app-root'`, `(() => 'app-root')()`);

const overrides = { watch: true, aot: true, forkTypeChecker: false };
const overrides = { watch: true, aot: true };
const logger = new TestLogger('rebuild-aot-errors');
const staticAnalysisError = 'Function expressions are not supported in decorators';
const syntaxError = 'Declaration or statement expected.';
Expand Down Expand Up @@ -298,7 +298,7 @@ describe('Browser Builder rebuilds', () => {
'src/app/imported-styles.css': 'p {color: #f00;}',
});

const overrides = { watch: true, aot: true, forkTypeChecker: false };
const overrides = { watch: true, aot: true };
let buildNumber = 0;

runTargetSpec(host, browserTargetSpec, overrides, DefaultTimeout * 3).pipe(
Expand Down

0 comments on commit e4c0151

Please sign in to comment.