2020-07-09 09:56:33 -04:00
|
|
|
// Run babel on tests to allow support for import/export statements in Node
|
|
|
|
require('@babel/register')
|
|
|
|
|
|
|
|
// Load JSDOM to mock the DOM in Node
|
|
|
|
require('jsdom-global/register')
|
|
|
|
|
|
|
|
// Load sinon-chai assertions so expect(stubFn).to.have.been.calledWith('abc')
|
|
|
|
// has a nicer failure messages
|
|
|
|
const chai = require('chai')
|
|
|
|
chai.use(require('sinon-chai'))
|
2020-09-15 08:48:08 -04:00
|
|
|
|
|
|
|
window.i18n = { currentLangCode: 'en' }
|
|
|
|
require('../../frontend/js/i18n')
|
2020-10-27 06:52:40 -04:00
|
|
|
|
|
|
|
const moment = require('moment')
|
|
|
|
moment.updateLocale('en', {
|
|
|
|
calendar: {
|
|
|
|
lastDay: '[Yesterday]',
|
|
|
|
sameDay: '[Today]',
|
|
|
|
nextDay: '[Tomorrow]',
|
|
|
|
lastWeek: 'ddd, Do MMM YY',
|
|
|
|
nextWeek: 'ddd, Do MMM YY',
|
|
|
|
sameElse: 'ddd, Do MMM YY'
|
|
|
|
}
|
|
|
|
})
|
2020-11-24 06:58:08 -05:00
|
|
|
|
|
|
|
// node-fetch doesn't accept relative URL's: https://github.com/node-fetch/node-fetch/blob/master/docs/v2-LIMITS.md#known-differences
|
|
|
|
const fetch = require('node-fetch')
|
|
|
|
global.fetch = (url, ...options) => fetch('http://localhost' + url, ...options)
|