mirror of https://github.com/webpack/webpack.git
test: coverage stability
This commit is contained in:
commit
e9fe800cb4
|
@ -0,0 +1 @@
|
|||
module.exports = "0";
|
|
@ -0,0 +1,3 @@
|
|||
it("should watch for changes", function() {
|
||||
expect(require("./changing-file")).toBe(WATCH_STEP);
|
||||
})
|
|
@ -0,0 +1 @@
|
|||
module.exports = "1";
|
|
@ -0,0 +1 @@
|
|||
module.exports = "2";
|
|
@ -0,0 +1,8 @@
|
|||
/** @type {import("../../../../").Configuration} */
|
||||
module.exports = {
|
||||
mode: "development",
|
||||
cache: {
|
||||
type: "memory",
|
||||
maxGenerations: 3
|
||||
}
|
||||
};
|
Loading…
Reference in New Issue