-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtests.html
More file actions
36 lines (36 loc) · 997 Bytes
/
Copy pathtests.html
File metadata and controls
36 lines (36 loc) · 997 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
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>needjs Unit Tests using QUnit</title>
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-git.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="https://code.jquery.com/qunit/qunit-1.14.0.js"></script>
<script src="bootstrap.js"></script>
<script>
needTimeout = 400;
</script>
<script>
needjsBootstrap = {"need": window.need, "needSHA256": window.needSHA256};
need = null;
needSHA256 = null;
</script>
<script src="need.js"></script>
<script>
needjsNeedDev = {"need": window.need, "needSHA256": window.needSHA256};
need = null;
needSHA256 = null;
</script>
<script src="need.min.js"></script>
<script>
needjsNeedMin = {"need": window.need, "needSHA256": window.needSHA256};
need = null;
needSHA256 = null;
</script>
<script src="ext/async-sha256.js"></script>
<script src="tests.js"></script>
</body>
</html>