mirror of
https://github.com/Alvin-Zilverstand/return-youtube-dislike.git
synced 2026-09-12 09:58:20 +02:00
d62130b898
* add jest and rewire for testing * wrap loose code for initMutationObserver() in function and call it instead of just executing it Otherwise this code is executed everytime state.js is imported somewhere in a file. This leads to not being able to test properly, since state.js is imported in a lot of the src files and fails when running the tests since we are missing global environment settings such as document, window etc in the jest environment. * export roundDown and getNumberformatter to make them testable as well * add basic acceptance tests for utils.js, create snapshots and add jest config * add failing test for buggy behaviour in a separate test case and skip it until fixed * Fixes after merge conflicts --------- Co-authored-by: Dmitrii Selivanov <selivano.d@gmail.com>
9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
module.exports = {
|
|
resetMocks: true,
|
|
collectCoverage: false,
|
|
collectCoverageFrom: [
|
|
"Extensions/combined/src/**/*.js",
|
|
"Extensions/combined/*.js",
|
|
],
|
|
};
|