Skip to content

Commit

Permalink
use correct multi-entry syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonocasey committed Dec 9, 2020
1 parent 4c79723 commit 6c70ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ if (process.env.CI_TEST_TYPE) {
if (process.env.CI_TEST_TYPE === 'playback') {
options.testInput = 'test/playback.test.js';
} else {
options.testInput = ['!test/playback.test.js', 'test/**/*.test.js'];
options.testInput = {include: ['test/**/*.test.js'], exclude: ['test/playback.test.js']};
}
}
const config = generate(options);
Expand Down

0 comments on commit 6c70ad8

Please sign in to comment.