Skip to content

Commit

Permalink
test: remove local builder workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
filipesilva authored and hansl committed Mar 28, 2018
1 parent c7485e7 commit 589deec
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions tests/e2e/setup/500-create-project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ export default async function() {
.then(() => useCIDefaults())
.then(() => argv['ng-version'] ? useNgVersion(argv['ng-version']) : Promise.resolve())
.then(() => argv.nightly || argv['ng-sha'] ? useSha() : Promise.resolve())
// TODO: remove this when schematics are updated
.then(() => updateJsonFile('package.json', json => {
json['devDependencies']['@angular-devkit/build-webpack'] = '0.0.8';
}))
// npm link on Circle CI is very noisy.
.then(() => silentNpm('install'))
.then(() => ng('version'))
Expand Down
4 changes: 0 additions & 4 deletions tests/e2e/utils/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,6 @@ export function createProject(name: string, ...args: string[]) {
.then(() => argv['ng2'] ? useNg2() : Promise.resolve())
.then(() => argv['ng4'] ? useNg4() : Promise.resolve())
.then(() => argv.nightly || argv['ng-sha'] ? useSha() : Promise.resolve())
// TODO: remove this when schematics are updated
.then(() => updateJsonFile('package.json', json => {
json['devDependencies']['@angular-devkit/build-webpack'] = '0.0.8';
}))
.then(() => console.log(`Project ${name} created... Installing npm.`))
.then(() => silentNpm('install'));
}
Expand Down

0 comments on commit 589deec

Please sign in to comment.