From 9a2ddd429c504da711ae102fb34807e773ca365b Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Thu, 19 Dec 2024 06:29:42 +0000 Subject: [PATCH] test: disable WTR e2e test Temporary disable this test due to ``` Failed to launch local browser installed at /home/runner/.cache/bazel/_bazel_runner/f47b8283cc0f5922f9455b06771398a1/sandbox/processwrapper-sandbox/410/execroot/angular_cli/bazel-out/k8-fastbuild/bin/tests/legacy-cli/e2e.npm_node22.sh.runfiles/org_chromium_chromium_linux_x64/chrome-linux/chrome. This could be because of a mismatch between the version of puppeteer and Chrome or Chromium. Try updating either of them, or adjust the executablePath option to point to another browser installation. Use the --puppeteer flag to run tests with bundled compatible version of Chromium. dist/test-out/c48222bb-ca34-455e-bc1b-122521e1e71e/app.component.spec.js: ``` --- tests/legacy-cli/e2e/tests/web-test-runner/basic.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/legacy-cli/e2e/tests/web-test-runner/basic.ts b/tests/legacy-cli/e2e/tests/web-test-runner/basic.ts index 2067e382b6d9..4985f872fb18 100644 --- a/tests/legacy-cli/e2e/tests/web-test-runner/basic.ts +++ b/tests/legacy-cli/e2e/tests/web-test-runner/basic.ts @@ -2,6 +2,9 @@ import { noSilentNg } from '../../utils/process'; import { applyWtrBuilder } from '../../utils/web-test-runner'; export default async function () { + // Temporary disabled due to failure. + return; + await applyWtrBuilder(); const { stderr } = await noSilentNg('test');