Skip to content

Commit c47e9a8

Browse files
committed
build: set include_npm to true
This is needed to run e2e locally. (cherry picked from commit aec58b8)
1 parent cfee198 commit c47e9a8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/legacy-cli/e2e.bzl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,11 @@ def _e2e_tests(name, runner, toolchain, **kwargs):
129129
tags = tags,
130130
toolchains = toolchains,
131131
node_toolchain = toolchain,
132-
include_npm = False,
132+
include_npm = select({
133+
# TODO(alanagius): check why on windows this fails.
134+
"@platforms//os:windows": False,
135+
"//conditions:default": True,
136+
}),
133137
**kwargs
134138
)
135139

0 commit comments

Comments
 (0)