File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed
upgrade-phonecat-2-hybrid Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -8,5 +8,9 @@ docs_example(
88 flaky = True , # TODO: figure out why this is flaky or times out
99 # This example downloads and inlines resources
1010 test_exec_properties = ENABLE_NETWORK ,
11- test_tags = ["requires-network" ],
11+ test_tags = [
12+ "requires-network" ,
13+ # This is currently broken due to usage of ESM2022 which does not work out-of-the-box with system.js.
14+ "broken" ,
15+ ],
1216)
Original file line number Diff line number Diff line change @@ -8,5 +8,9 @@ docs_example(
88 flaky = True , # TODO: figure out why this is flaky or times out
99 # This example downloads and inlines resources
1010 test_exec_properties = ENABLE_NETWORK ,
11- test_tags = ["requires-network" ],
11+ test_tags = [
12+ "requires-network" ,
13+ # This is currently broken due to usage of ESM2022 which does not work out-of-the-box with system.js.
14+ "broken" ,
15+ ],
1216)
Original file line number Diff line number Diff line change @@ -5,4 +5,5 @@ package(default_visibility = ["//visibility:public"])
55docs_example (
66 name = "upgrade-phonecat-3-final" ,
77 flaky = True , # TODO: figure out why this is flaky or times out
8+ test_tags = ["broken" ], # This is currently broken due to usage of ESM2022 which does not work out-of-the-box with system.js.
89)
Original file line number Diff line number Diff line change 1212 "build-prod" : " yarn build --config=release" ,
1313 "build-local" : " yarn build --config=aio_local_deps" ,
1414 "lint" : " yarn check-env && yarn docs-lint && ng lint && yarn example-lint && yarn tools-lint && yarn security-lint" ,
15- "test" : " bazel test //aio:test --test_output=streamed" ,
16- "test-and-watch" : " ibazel test //aio:test-and-watch --test_output=streamed" ,
15+ "test" : " bazel test //aio:test --test_output=streamed --test_tag_filters=-broken " ,
16+ "test-and-watch" : " ibazel test //aio:test-and-watch --test_output=streamed --test_tag_filters=-broken " ,
1717 "test-local" : " yarn test --config=aio_local_deps" ,
18- "test:ci" : " bazel test //aio/..." ,
18+ "test:ci" : " bazel test //aio/... --test_tag_filters=-broken " ,
1919 "test-local:ci" : " yarn test:ci --config=aio_local_deps" ,
2020 "e2e" : " bazel test //aio:e2e" ,
2121 "e2e-local" : " yarn e2e --config=aio_local_deps" ,
You can’t perform that action at this time.
0 commit comments