mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
11 lines
277 B
JavaScript
11 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;
|