overleaf/services/web/public/coffee/tests/unit/run.coffee

22 lines
605 B
CoffeeScript
Raw Normal View History

2014-02-12 05:23:40 -05:00
require ["libs/mocha", "libs/underscore", "libs/jquery"], ->
mocha.setup({
ui: "bdd",
globals: ["now", "socket"]
})
require [
"tests/unit/UndoManagerTests"
"tests/unit/history/FileDiff"
"tests/unit/history/VersionListView"
"tests/unit/history/HistoryView"
"tests/unit/spelling/HighlightedWordManagerTests"
"tests/unit/spelling/SpellingManagerTests"
"tests/unit/auto-complete/SuggestionManager"
"tests/unit/project-members"
"tests/unit/user"
"tests/unit/project"
"tests/unit/modal"
"tests/unit/editor/DocumentTests"
"tests/unit/editor/ShareJsDocTests"
], ->
mocha.run()