Files
return-youtube-dislike/playwright.live-youtube.config.js
T
Anarios 3657de9b2c Fix Shorts support and add userscript voting
Harden Shorts controls, reaction state, and navigation; share voting logic
with the extension; improve ratio-bar rendering; and add comprehensive Jest,
Playwright, artifact, and live-browser regression coverage.
2026-09-01 23:41:28 +02:00

17 lines
362 B
JavaScript

const { defineConfig } = require("@playwright/test");
module.exports = defineConfig({
testDir: "./Extensions/UserScript/e2e/live",
testMatch: "**/*.live.e2e.js",
fullyParallel: false,
forbidOnly: true,
retries: 0,
workers: 1,
timeout: 90_000,
expect: {
timeout: 20_000,
},
reporter: "list",
outputDir: "test-results/live-youtube",
});