mirror of
https://github.com/FormidableLabs/webpack-dashboard.git
synced 2026-01-18 14:18:05 +00:00
* 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]`
11 lines
184 B
JavaScript
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;
|