Skip to content

Commit

Permalink
improve test stability
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Sep 8, 2021
1 parent 200ce66 commit 32a9b20
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions test/ProgressPlugin.test.js
@@ -1,5 +1,7 @@
"use strict";

require("./helpers/warmup-webpack");

const _ = require("lodash");
const path = require("path");
const { createFsFromVolume, Volume } = require("memfs");
Expand Down
@@ -1,3 +1,5 @@
module.exports = () => {
return !process.version.startsWith("v10.");
return (
!process.version.startsWith("v10.") && !process.version.startsWith("v12.")
);
};

0 comments on commit 32a9b20

Please sign in to comment.