mirror of
https://github.com/Anarios/return-youtube-dislike.git
synced 2026-09-12 10:22:10 +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.
12 lines
329 B
JavaScript
12 lines
329 B
JavaScript
module.exports = {
|
|
resetMocks: true,
|
|
collectCoverage: false,
|
|
collectCoverageFrom: [
|
|
"Extensions/common/**/*.js",
|
|
"Extensions/combined/src/**/*.js",
|
|
"Extensions/combined/*.js",
|
|
"Extensions/UserScript/src/**/*.js",
|
|
],
|
|
testPathIgnorePatterns: ["/node_modules/", "<rootDir>/Extensions/UserScript/e2e/"],
|
|
};
|