forked from replit-archive/jsrepl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
27 lines (27 loc) · 975 Bytes
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="test/lib/mocha.css" />
<script src="extern/coffee-script/coffee-script.js"></script>
<script src="test/lib/mocha.js"></script>
<script src="test/lib/expect.js"></script>
<script src="repl.js" id="jsrepl-script"></script>
<script src="languages.js"></script>
<script type="text/coffeescript">
mocha.setup
ui: 'bdd'
timeout: 3500
ignoreLeaks: true
</script>
<script type="text/coffeescript" src="test/loader.test.coffee"></script>
<script type="text/coffeescript" src="test/event_emitter.test.coffee"></script>
<script type="text/coffeescript" src="test/sandbox.test.coffee"></script>
<script type="text/coffeescript" src="test/jsrepl.test.coffee"></script>
</head>
<body>
<div id="mocha"></div>
<script type="text/coffeescript">
mocha.run()
</script>
</body>
</html>