-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqunit.html
More file actions
24 lines (24 loc) · 846 Bytes
/
qunit.html
File metadata and controls
24 lines (24 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Js-Eden QUnit</title>
<link rel="stylesheet" href="node_modules/qunit/support/qunit/qunit/qunit.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script>Cadence = {};</script>
<script src="node_modules/qunit/support/qunit/qunit/qunit.js"></script>
<!-- these script tags MUST be the same as what's defined in qunit_tests.js -->
<script src="js/lib/jquery-1.8.3.min.js"></script>
<script src="js/language/lang.js"></script>
<script src="js/core/lex.js"></script>
<script src="js/tests/lex.js"></script>
<script src="js/core/errors.js"></script>
<script src="js/core/parser.js"></script>
<script src="js/tests/parser.js"></script>
<script src="js/core/core.js"></script>
<script src="js/tests/core.js"></script>
</body>
</html>