fix(qa): recover Playwright Chromium on Ubuntu 26

This commit is contained in:
Vincent Koc
2026-06-24 13:24:43 +08:00
parent 2ab3b223ed
commit fd66b44f5e
4 changed files with 194 additions and 6 deletions

View File

@@ -179,7 +179,7 @@ describe("qa test file scenario runner", () => {
expect(result.executionKind).toBe("playwright");
expect(commands.map((command) => command.args)).toEqual([
["scripts/ensure-playwright-chromium.mjs"],
["scripts/ensure-playwright-chromium.mjs", "--skip-ffmpeg"],
[
"scripts/run-vitest.mjs",
"run",

View File

@@ -121,7 +121,7 @@ function playwrightSteps(scenario: QaTestFileScenario): QaScenarioCommandStep[]
return [
{
command: process.execPath,
args: ["scripts/ensure-playwright-chromium.mjs"],
args: ["scripts/ensure-playwright-chromium.mjs", "--skip-ffmpeg"],
},
{
command: process.execPath,