Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: improves sorting of modules
  • Loading branch information
cap-Bernardito committed Feb 18, 2021
commit c5ba6d7883762486b3273523ab7f2fa684f026a8
32 changes: 24 additions & 8 deletions test/TestCache.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,9 @@ describe('TestCache', () => {
expect(stats.compilation.errors).toHaveLength(0);

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

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

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

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

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

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

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

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