mirror of
https://github.com/vxcontrol/ncform.git
synced 2026-07-21 14:25:29 -04:00
22 lines
688 B
JavaScript
Executable File
22 lines
688 B
JavaScript
Executable File
global.chai = require('chai');
|
|
global.sinon = require('sinon');
|
|
global.chai.use(require('sinon-chai'));
|
|
|
|
require('babel-core/register')({
|
|
ignore: /node_modules\/(?!lodash-es)/
|
|
});
|
|
require('./setup')();
|
|
|
|
/*
|
|
Uncomment the following if your library uses features of the DOM,
|
|
for example if writing a jQuery extension, and
|
|
add 'simple-jsdom' to the `devDependencies` of your package.json
|
|
|
|
Note that JSDom doesn't implement the entire DOM API. If you're using
|
|
more advanced or experimental features, you may need to switch to
|
|
PhantomJS. Setting that up is currently outside of the scope of this
|
|
boilerplate.
|
|
*/
|
|
// import simpleJSDom from 'simple-jsdom';
|
|
// simpleJSDom.install();
|