Ryan Roemer c9be42760d Add basic tests. (#208)
* Fixes #205 
* Add the most minimal skeleton tests to import most files and check for rudimentary breakage.
* Make `bin/webpack-dashboard.js` exportable in addition to being a script.
* Follow-on real test ticket at #207 
* Update eslintrc to use `arrow-parens: [error, as-needed]`
2017-10-10 09:08:44 -07:00

11 lines
184 B
JavaScript

"use strict";
const chai = require("chai");
const sinonChai = require("sinon-chai");
// Add chai plugins.
chai.use(sinonChai);
// Add test lib globals.
global.expect = chai.expect;