mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
10 lines
277 B
JavaScript
10 lines
277 B
JavaScript
/* eslint-disable no-undef */
|
|
//------------------------------
|
|
// Global modules
|
|
//------------------------------
|
|
|
|
global._ = require('lodash');
|
|
global.chai = require('chai');
|
|
chai.use(require('sinon-chai'));
|
|
chai.use(require('chai-as-promised'));
|
|
global.expect = chai.expect;
|