Skip to content

Commit

Permalink
Fix Windows tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Nov 20, 2019
1 parent 8f4f012 commit 6780c64
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/cli/samples/empty-chunk-multiple/_config.js
Expand Up @@ -5,6 +5,7 @@ module.exports = {
command: 'rollup -c',
error: () => true,
stderr: stderr => {
assert.ok(stderr.includes('(!) Generated empty chunks\na, b'));
assert.ok(stderr.includes('(!) Generated empty chunks'));
assert.ok(stderr.includes('a, b'));
}
};
3 changes: 2 additions & 1 deletion test/cli/samples/empty-chunk/_config.js
Expand Up @@ -5,6 +5,7 @@ module.exports = {
command: 'rollup -c',
error: () => true,
stderr: stderr => {
assert.ok(stderr.includes('(!) Generated an empty chunk\nmain'));
assert.ok(stderr.includes('(!) Generated an empty chunk'));
assert.ok(stderr.includes('main'));
}
};

0 comments on commit 6780c64

Please sign in to comment.