You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
381 B
17 lines
381 B
/* global expect: true, assert: true, require, process */
|
|
|
|
expect = (function () {
|
|
var chai = require('chai');
|
|
chai.config.includeStack = true;
|
|
return chai.expect;
|
|
}());
|
|
|
|
assert = (function () {
|
|
var chai = require('chai');
|
|
chai.config.includeStack = true;
|
|
return chai.assert;
|
|
}());
|
|
|
|
if (typeof process === 'undefined' || !process.env.NO_ES6_SHIM) {
|
|
require('../');
|
|
}
|
|
|