Skip to content

Commit 2f54646

Browse files
committed
Switch to npm from yarn for e2e tests
1 parent fef62db commit 2f54646

File tree

3 files changed

+428
-334
lines changed

3 files changed

+428
-334
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ sudo: required
55

66
install:
77
- npm run bootstrap
8-
- npm i -g yarn
98
script:
109
- npm run build
1110
- npm run test:ci

infra/e2e.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { execSync } from 'child_process';
22
import { readFileSync } from 'fs';
33

44
const enterTest = 'cd packages/guess-webpack/test/fixtures/angular';
5-
console.log(execSync(`${enterTest} && yarn`).toString());
5+
console.log(execSync(`${enterTest} && npm i`).toString());
66
console.log(execSync(
77
`${enterTest} && ./node_modules/.bin/ng build --extra-webpack-config webpack.extra.js`
88
).toString());

0 commit comments

Comments
 (0)