Skip to content

Commit 46b8c3c

Browse files
committed
TEST-2
1 parent 9e0f13f commit 46b8c3c

File tree

6 files changed

+7
-17
lines changed

6 files changed

+7
-17
lines changed

packages/core/schematics/migrations/output-migration/BUILD.bazel

-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,5 @@ ts_library(
4343
jasmine_node_test(
4444
name = "test",
4545
srcs = [":test_lib"],
46-
enable_linker = True,
4746
env = {"FORCE_COLOR": "3"},
4847
)

packages/core/schematics/migrations/self-closing-tags-migration/BUILD.bazel

-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,5 @@ ts_library(
4444
jasmine_node_test(
4545
name = "test",
4646
srcs = [":test_lib"],
47-
enable_linker = True,
4847
env = {"FORCE_COLOR": "3"},
4948
)

packages/core/schematics/migrations/signal-migration/test/BUILD.bazel

-3
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,13 @@ nodejs_binary(
2020
name = "golden_test_runner",
2121
testonly = True,
2222
data = [":test_runners_lib"],
23-
enable_linker = True,
2423
entry_point = ":golden_test_runner.ts",
2524
)
2625

2726
nodejs_binary(
2827
name = "batch_runner",
2928
testonly = True,
3029
data = [":test_runners_lib"],
31-
enable_linker = True,
3230
entry_point = ":batch_runner.ts",
3331
)
3432

@@ -144,5 +142,4 @@ ts_library(
144142
jasmine_node_test(
145143
name = "test_jasmine",
146144
srcs = [":test_lib"],
147-
enable_linker = True,
148145
)

packages/core/schematics/migrations/signal-queries-migration/BUILD.bazel

-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,5 @@ ts_library(
4444
jasmine_node_test(
4545
name = "test",
4646
srcs = [":test_lib"],
47-
enable_linker = True,
4847
env = {"FORCE_COLOR": "3"},
4948
)

packages/core/schematics/utils/tsurge/test/BUILD.bazel

-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,5 @@ ts_library(
3535

3636
jasmine_node_test(
3737
name = "test",
38-
enable_linker = True,
3938
deps = [":test_lib"],
4039
)

tools/defaults.bzl

+7-10
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ def esbuild_jasmine_node_test(name, specs = [], external = [], bootstrap = [], *
479479
**kwargs
480480
)
481481

482-
def jasmine_node_test(name, srcs = [], data = [], bootstrap = [], env = {}, templated_args = [], enable_linker = False, **kwargs):
482+
def jasmine_node_test(name, srcs = [], data = [], bootstrap = [], env = {}, **kwargs):
483483
# Very common dependencies for tests
484484
deps = kwargs.pop("deps", []) + [
485485
"@npm//chokidar",
@@ -492,16 +492,13 @@ def jasmine_node_test(name, srcs = [], data = [], bootstrap = [], env = {}, temp
492492
]
493493
configuration_env_vars = kwargs.pop("configuration_env_vars", [])
494494

495-
if not enable_linker:
496-
templated_args = templated_args + [
497-
# Disable the linker and rely on patched resolution which works better on Windows
498-
# and is less prone to race conditions when targets build concurrently.
499-
"--nobazel_run_linker",
500-
]
495+
# Disable the linker and rely on patched resolution which works better on Windows
496+
# and is less prone to race conditions when targets build concurrently.
497+
templated_args = ["--nobazel_run_linker"] + kwargs.pop("templated_args", [])
501498

502-
# We disable the linker, so the ESM node module loader needs to be enabled.
503-
npm_workspace = _node_modules_workspace_name()
504-
env = enable_esm_node_module_loader(npm_workspace, env)
499+
# We disable the linker, so the ESM node module loader needs to be enabled.
500+
npm_workspace = _node_modules_workspace_name()
501+
env = enable_esm_node_module_loader(npm_workspace, env)
505502

506503
spec_entrypoint(
507504
name = "%s_spec_entrypoint.spec" % name,

0 commit comments

Comments
 (0)