2017-01-21 11:30:26 +00:00
|
|
|
'use strict';
|
|
|
|
|
2019-02-08 16:04:28 +00:00
|
|
|
const chai = require('chai');
|
|
|
|
const chaiAsPromised = require('chai-as-promised');
|
2017-01-21 11:30:26 +00:00
|
|
|
const sinon = require('sinon');
|
|
|
|
|
2019-02-08 16:04:28 +00:00
|
|
|
chai.use(chaiAsPromised);
|
|
|
|
|
|
|
|
global.expect = chai.expect;
|
2017-01-21 11:30:26 +00:00
|
|
|
global.sinon = sinon;
|