forked from jasmine-sinon/jasmine-sinon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpecRunner.html
More file actions
25 lines (20 loc) · 726 Bytes
/
Copy pathSpecRunner.html
File metadata and controls
25 lines (20 loc) · 726 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
<!doctype html>
<html>
<head>
<title>jasmine-sinon specs</title>
<link rel="stylesheet" href="lib/jasmine-1.1.0/jasmine.css">
<script src="lib/jasmine-1.1.0/jasmine.js"></script>
<script src="lib/jasmine-1.1.0/jasmine-jquery.js"></script>
<script src="lib/jasmine-1.1.0/jasmine-html.js"></script>
<script src="lib/sinon-1.4.2/sinon-1.4.2.js"></script>
<script src="lib/jasmine-sinon.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="spec/jasmine-sinon-specs.js"></script>
</head>
<body>
<script type="text/javascript">
jasmine.getEnv().addReporter(new jasmine.TrivialReporter());
jasmine.getEnv().execute();
</script>
</body>
</html>