Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5f256c7

Browse files
committedJan 11, 2021
test(angular): try to fix pnpm install in e2e tests
1 parent 2f7cab0 commit 5f256c7

File tree

3 files changed

+276
-17
lines changed

3 files changed

+276
-17
lines changed
 

‎e2e/angular-e2e/tests/convert-to-buildable.spec.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@ import {
55
readJson,
66
runNxCommand,
77
runNxCommandAsync,
8+
runPackageManagerInstall,
89
uniq,
910
} from '@nrwl/nx-plugin/testing';
1011
import * as path from 'path';
1112

1213
describe('@nxworker/angular:convert-to-buildable generator e2e', () => {
1314
beforeAll(() => {
14-
copyNodeModules(['@nrwl/angular']);
15+
copyNodeModules(['@nrwl/angular', 'ng-packagr']);
16+
runPackageManagerInstall();
1517
});
1618

1719
beforeEach(async () => {

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@
9595
"jest-preset-angular": "8.3.1",
9696
"json": "^10.0.0",
9797
"lint-staged": "^10.5.3",
98+
"ng-packagr": "^11.0.3",
9899
"prettier": "2.1.2",
99100
"ts-jest": "26.4.0",
100101
"ts-node": "~9.1.1",

0 commit comments

Comments
 (0)
Please sign in to comment.