mirror of
https://github.com/mmumshad/ansible-playable.git
synced 2025-02-12 17:01:54 +00:00
19 lines
390 B
JavaScript
19 lines
390 B
JavaScript
'use strict';
|
|
|
|
// Register the Babel require hook
|
|
require('babel-core/register');
|
|
|
|
var chai = require('chai');
|
|
|
|
// Load Chai assertions
|
|
global.expect = chai.expect;
|
|
global.assert = chai.assert;
|
|
chai.should();
|
|
|
|
// Load Sinon
|
|
global.sinon = require('sinon');
|
|
|
|
// Initialize Chai plugins
|
|
chai.use(require('sinon-chai'));
|
|
chai.use(require('chai-as-promised'));
|
|
chai.use(require('chai-things'))
|