From 6c70ad8967789fb7404d5a51733529645a48f98b Mon Sep 17 00:00:00 2001 From: brandonocasey Date: Tue, 8 Dec 2020 18:25:55 -0500 Subject: [PATCH] use correct multi-entry syntax --- scripts/rollup.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/rollup.config.js b/scripts/rollup.config.js index 289348399..f9fbecf0a 100644 --- a/scripts/rollup.config.js +++ b/scripts/rollup.config.js @@ -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);