mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
* Adjusts tests to no longer rely on CommonJS features. Switches them to ESM * Updates test initialization files to not double-initialize Jasmine now that bootstrap files are loaded after Jasmine. The `jasmine.boot` setup was hacky from `rules_nodejs` and will break in the future regardless if we e.g. use `rules_js` with actual unmodified `jasmine`. PR Close #48521
15 lines
301 B
Text
15 lines
301 B
Text
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "closure",
|
|
testonly = True,
|
|
srcs = ["zone.closure.ts"],
|
|
deps = ["//packages/zone.js/lib:zone_d_ts"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "closure_js",
|
|
testonly = True,
|
|
srcs = [":closure"],
|
|
output_group = "es6_sources",
|
|
)
|