forked from Khan/perseus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwallaby.js
22 lines (22 loc) · 791 Bytes
/
wallaby.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
* Configuration for the wallabyjs test runner.
* See https://wallabyjs.com/ for details.
*
* To run the tests you'll need to install the wallaby plugin for
* your IDE, see https://wallabyjs.com/download/. Once the plugin
* is installed, use it to select this file as the wallaby config you
* want to use then start wallaby.
*
* IMPORTANT: Running all test suites takes a long time. Usually you
* only care about one or two test suites when using wallaby. Use the
* "start exclusive test run" command when running tests with wallaby.
* See https://wallabyjs.com/blog/exclusive-test-runs.html.
*/
// eslint-disable-next-line import/no-commonjs
module.exports = (wallaby) => {
return {
autoDetect: true,
runMode: "onsave",
trace: true,
};
};