Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compatibility with webpack 5 #698

Merged
merged 20 commits into from
Feb 15, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
test: fix
  • Loading branch information
alexander-akait committed Feb 9, 2021
commit b756e1f005478b314e06199010228df8ab89fd1e
8 changes: 6 additions & 2 deletions test/TestCache.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ describe('TestCache', () => {
expect(stats.compilation.errors).toHaveLength(0);

compiler1.close(() => {
resolve();
process.nextTick(() => {
resolve();
});
});
});
});
Expand Down Expand Up @@ -110,7 +112,9 @@ describe('TestCache', () => {
expect(stats.compilation.errors).toHaveLength(0);

compiler2.close(() => {
resolve();
process.nextTick(() => {
resolve();
});
});
});
});
Expand Down