-
Notifications
You must be signed in to change notification settings - Fork 0
/
deprecated-test-runtime-project.html
executable file
·44 lines (37 loc) · 1.46 KB
/
deprecated-test-runtime-project.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Modulus Tests</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="test/vendor/jasmine.css">
</head>
<body>
<h1>
Runtime Modulus Tests
</h1>
<h3>
These tests test the non-built modulus functionality. (runtime only, no node.js build process)
</h3>
<!-- testing library -->
<script src="test/vendor/jasmine.js"></script>
<script src="test/vendor/jasmine-html.js"></script>
<!-- your source libs here -->
<script src="src/modulus/modulus.js"></script>
<script src="test/runtime-project/modules/moduleA.js"></script>
<script src="test/runtime-project/modules/moduleB.js"></script>
<script src="test/runtime-project/modules/moduleC.js"></script>
<script src="test/runtime-project/modules/moduleD.js"></script>
<script src="test/runtime-project/vendor/jquery-1.10.2.min.js"></script>
<!-- your specs -->
<script src="test/spec1.js"></script>
<!-- start the tests -->
<script>
var env = jasmine.getEnv();
env.addReporter(new jasmine.HtmlReporter());
env.execute();
</script>
</body>
</html>