mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
388d9c0f1e
* Add to globals from JSDOM for frontend unit tests * Fix tests GitOrigin-RevId: 3a73477d9e4c3316ab2c9510ce3360740c3feb53
100 lines
2.5 KiB
JavaScript
100 lines
2.5 KiB
JavaScript
// Run babel on tests to allow support for import/export statements in Node
|
|
require('@babel/register')
|
|
|
|
// Load JSDOM to mock the DOM in Node
|
|
// Set pretendToBeVisual to enable requestAnimationFrame
|
|
require('jsdom-global')(undefined, {
|
|
pretendToBeVisual: true,
|
|
url: 'https://www.test-overleaf.com/',
|
|
})
|
|
|
|
const path = require('path')
|
|
process.env.SHARELATEX_CONFIG = path.resolve(
|
|
__dirname,
|
|
'../../config/settings.webpack.js'
|
|
)
|
|
|
|
// 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'))
|
|
chai.use(require('chai-as-promised'))
|
|
|
|
// Mock global settings
|
|
window.ExposedSettings = {
|
|
appName: 'Overleaf',
|
|
maxEntitiesPerProject: 10,
|
|
maxUploadSize: 5 * 1024 * 1024,
|
|
siteUrl: 'https://www.dev-overleaf.com',
|
|
hasLinkUrlFeature: true,
|
|
hasLinkedProjectFileFeature: true,
|
|
hasLinkedProjectOutputFileFeature: true,
|
|
textExtensions: [
|
|
'tex',
|
|
'latex',
|
|
'sty',
|
|
'cls',
|
|
'bst',
|
|
'bib',
|
|
'bibtex',
|
|
'txt',
|
|
'tikz',
|
|
'mtx',
|
|
'rtex',
|
|
'md',
|
|
'asy',
|
|
'latexmkrc',
|
|
'lbx',
|
|
'bbx',
|
|
'cbx',
|
|
'm',
|
|
'lco',
|
|
'dtx',
|
|
'ins',
|
|
'ist',
|
|
'def',
|
|
'clo',
|
|
'ldf',
|
|
'rmd',
|
|
'lua',
|
|
'gv',
|
|
'mf',
|
|
],
|
|
}
|
|
|
|
window.i18n = { currentLangCode: 'en' }
|
|
require('../../frontend/js/i18n')
|
|
|
|
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',
|
|
},
|
|
})
|
|
|
|
// workaround for missing keys in jsdom-global's keys.js
|
|
global.AbortController = window.AbortController
|
|
global.MutationObserver = window.MutationObserver
|
|
global.StorageEvent = window.StorageEvent
|
|
global.SVGElement = window.SVGElement
|
|
global.localStorage = window.localStorage
|
|
global.performance = window.performance
|
|
global.requestAnimationFrame = window.requestAnimationFrame
|
|
global.sessionStorage = window.sessionStorage
|
|
|
|
// add polyfill for ResizeObserver
|
|
global.ResizeObserver = window.ResizeObserver = require('@juggle/resize-observer').ResizeObserver
|
|
|
|
// 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 = window.fetch = (url, ...options) =>
|
|
fetch(new URL(url, 'http://localhost'), ...options)
|
|
|
|
// ignore CSS files
|
|
const { addHook } = require('pirates')
|
|
addHook(() => '', { exts: ['.css'], ignoreNodeModules: false })
|