ci: disable system js tests (#49332)

These are currently broken due to the APF v16 changes which dropped support for ES2015.

PR Close #49332
This commit is contained in:
Alan Agius 2023-03-09 12:21:06 +00:00 committed by Andrew Scott
parent 4d89696285
commit 9c3f8d52d8
4 changed files with 14 additions and 5 deletions

View file

@ -8,5 +8,9 @@ docs_example(
flaky = True, # TODO: figure out why this is flaky or times out
# This example downloads and inlines resources
test_exec_properties = ENABLE_NETWORK,
test_tags = ["requires-network"],
test_tags = [
"requires-network",
# This is currently broken due to usage of ESM2022 which does not work out-of-the-box with system.js.
"broken",
],
)

View file

@ -8,5 +8,9 @@ docs_example(
flaky = True, # TODO: figure out why this is flaky or times out
# This example downloads and inlines resources
test_exec_properties = ENABLE_NETWORK,
test_tags = ["requires-network"],
test_tags = [
"requires-network",
# This is currently broken due to usage of ESM2022 which does not work out-of-the-box with system.js.
"broken",
],
)

View file

@ -5,4 +5,5 @@ package(default_visibility = ["//visibility:public"])
docs_example(
name = "upgrade-phonecat-3-final",
flaky = True, # TODO: figure out why this is flaky or times out
test_tags = ["broken"], # This is currently broken due to usage of ESM2022 which does not work out-of-the-box with system.js.
)

View file

@ -12,10 +12,10 @@
"build-prod": "yarn build --config=release",
"build-local": "yarn build --config=aio_local_deps",
"lint": "yarn check-env && yarn docs-lint && ng lint && yarn example-lint && yarn tools-lint && yarn security-lint",
"test": "bazel test //aio:test --test_output=streamed",
"test-and-watch": "ibazel test //aio:test-and-watch --test_output=streamed",
"test": "bazel test //aio:test --test_output=streamed --test_tag_filters=-broken",
"test-and-watch": "ibazel test //aio:test-and-watch --test_output=streamed --test_tag_filters=-broken",
"test-local": "yarn test --config=aio_local_deps",
"test:ci": "bazel test //aio/...",
"test:ci": "bazel test //aio/... --test_tag_filters=-broken",
"test-local:ci": "yarn test:ci --config=aio_local_deps",
"e2e": "bazel test //aio:e2e",
"e2e-local": "yarn e2e --config=aio_local_deps",