Skip to content

Commit aec58b8

Browse files
committed
build: set include_npm to true
This is needed to run e2e locally.
1 parent 848b4c2 commit aec58b8

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)