File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
integration/yarn-pnp-compat Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -8,3 +8,9 @@ integration/ng-update-v13/node_modules
8
8
9
9
integration/ng-add/.angular
10
10
integration/ng-add/node_modules
11
+
12
+ integration/yarn-pnp-compat/.angular
13
+ integration/yarn-pnp-compat/.yarn/cache
14
+ integration/yarn-pnp-compat/.yarn/unplugged
15
+ integration/yarn-pnp-compat/.yarn/install-state.gz
16
+ integration/yarn-pnp-compat/node_modules
Original file line number Diff line number Diff line change
1
+ load ("//tools:defaults.bzl" , "node_integration_test" )
2
+
3
+ node_integration_test (
4
+ name = "test" ,
5
+ srcs = glob (["**/*" ]),
6
+ commands = [
7
+ "yarn install --no-immutable" ,
8
+ "yarn build" ,
9
+ ],
10
+ environment = {
11
+ # Yarn berry needs a temporary directory that is writeable in the sandbox.
12
+ # We acquire a temporary directory for it.
13
+ "HOME" : "<TMP>" ,
14
+ # Set `CI` to silence `yarn berry` and make the output readable.
15
+ "CI" : "true" ,
16
+ },
17
+ npm_packages = {
18
+ "//src/cdk:npm_package_archive" : "@angular/cdk" ,
19
+ "//src/material:npm_package_archive" : "@angular/material" ,
20
+ },
21
+ tags = [
22
+ # This test relies on `yarn` so there needs to be internet access.
23
+ "requires-network" ,
24
+ ],
25
+ )
You can’t perform that action at this time.
0 commit comments