test: coverage stability

This commit is contained in:
Alexander Akait 2024-08-01 20:22:52 +03:00 committed by GitHub
commit e9fe800cb4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1 @@
module.exports = "0";

View File

@ -0,0 +1,3 @@
it("should watch for changes", function() {
expect(require("./changing-file")).toBe(WATCH_STEP);
})

View File

@ -0,0 +1 @@
module.exports = "1";

View File

@ -0,0 +1 @@
module.exports = "2";

View File

@ -0,0 +1,8 @@
/** @type {import("../../../../").Configuration} */
module.exports = {
mode: "development",
cache: {
type: "memory",
maxGenerations: 3
}
};