Skip to content

Commit

Permalink
make afterEach async
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Oct 17, 2018
1 parent 7bc5c98 commit 15b6f8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/configCases/externals/global/index.js
@@ -1,5 +1,6 @@
afterEach(() => {
afterEach(done => {
delete global.EXTERNAL_TEST_GLOBAL;
done();
});

it("should move externals in chunks into entry chunk", function() {
Expand Down

0 comments on commit 15b6f8b

Please sign in to comment.