Skip to content

Commit

Permalink
windows test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisblossom committed Mar 4, 2019
1 parent d6e2e38 commit 0ff10f0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/clean-webpack-plugin.test.ts
Expand Up @@ -1023,7 +1023,7 @@ describe('dry option', () => {
]);

expect(consoleSpy).toHaveBeenCalledWith(
'clean-webpack-plugin: dry dist/1.bundle.js',
`clean-webpack-plugin: dry ${path.normalize('dist/1.bundle.js')}`,
);
});
});
Expand Down Expand Up @@ -1053,7 +1053,9 @@ describe('verbose option', () => {
await compiler.run();

expect(consoleSpy).toHaveBeenCalledWith(
'clean-webpack-plugin: removed dist/1.bundle.js',
`clean-webpack-plugin: removed ${path.normalize(
'dist/1.bundle.js',
)}`,
);
});

Expand Down

0 comments on commit 0ff10f0

Please sign in to comment.