mirror of
https://github.com/Alvin-Zilverstand/return-youtube-dislike.git
synced 2026-09-12 09:58:20 +02:00
3657de9b2c
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.
17 lines
362 B
JavaScript
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",
|
|
});
|