setup.js 207 Bytes
Newer Older
Thitichaipun Wutthisak committed
1 2 3 4 5 6 7 8 9 10 11
/*jshint node:true*/
(function () {
  'use strict';

  var chai = require('chai');
  global.chai = chai;
  global.should = chai.should();
  global.expect = chai.expect;
  global.assert = chai.assert;

})();