@@ -479,7 +479,7 @@ def esbuild_jasmine_node_test(name, specs = [], external = [], bootstrap = [], *
479
479
** kwargs
480
480
)
481
481
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 ):
483
483
# Very common dependencies for tests
484
484
deps = kwargs .pop ("deps" , []) + [
485
485
"@npm//chokidar" ,
@@ -492,16 +492,13 @@ def jasmine_node_test(name, srcs = [], data = [], bootstrap = [], env = {}, temp
492
492
]
493
493
configuration_env_vars = kwargs .pop ("configuration_env_vars" , [])
494
494
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" , [])
501
498
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 )
505
502
506
503
spec_entrypoint (
507
504
name = "%s_spec_entrypoint.spec" % name ,
0 commit comments