diff --git a/src/config/user.js b/src/config/user.js index c4835703d..2cdf00837 100644 --- a/src/config/user.js +++ b/src/config/user.js @@ -15,7 +15,9 @@ const defaults = { debug: false, // test cmd options test: { - build: true, + // no need to build before testing in CI since we build after installing + // deps so building again is redundant + build: process.env.CI == null, runner: 'node', target: ['node', 'browser', 'webworker'], watch: false,