overleaf/services/web/test/unit_frontend/coffee/test-main.coffee

15 lines
380 B
CoffeeScript
Raw Normal View History

# Set up requirejs to load the tests
# Uses heuristic that test filenames end with Tests.js
tests = []
for file of window.__karma__.files
if window.__karma__.files.hasOwnProperty(file)
2018-02-27 07:25:42 -05:00
if /Tests\.js$/.test(file)
tests.push(file)
requirejs.config
baseUrl: '/base/public/js'
paths:
"moment": "libs/moment-2.9.0"
deps: tests
callback: window.__karma__.start