-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspec.html
More file actions
41 lines (32 loc) · 1.19 KB
/
spec.html
File metadata and controls
41 lines (32 loc) · 1.19 KB
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
<html>
<head>
<link type="text/css" rel="stylesheet" href="https://raw.github.com/pivotal/jasmine/v1.3.1/lib/jasmine-core/jasmine.css"/>
<script type="text/javascript" src="https://raw.github.com/pivotal/jasmine/v1.3.1/lib/jasmine-core/jasmine.js"> </script>
<script type="text/javascript" src="https://raw.github.com/pivotal/jasmine/v1.3.1/lib/jasmine-core/jasmine-html.js"> </script>
<script type="text/javascript" src="jasmineSharedExamples.js"> </script>
<script type="text/javascript" src="spec.js"> </script>
<script type="text/javascript">
(function() {
var jasmineEnv = jasmine.getEnv();
jasmineEnv.updateInterval = 100;
var trivialReporter = new jasmine.TrivialReporter();
jasmineEnv.addReporter(trivialReporter);
jasmineEnv.specFilter = function(spec) {
return trivialReporter.specFilter(spec);
};
var currentWindowOnload = window.onload;
window.onload = function() {
if (currentWindowOnload) {
currentWindowOnload();
}
execJasmine();
};
function execJasmine() {
jasmineEnv.execute();
}
})();
</script>
</head>
<body>
</body>
</html>