File tree 1 file changed +30
-0
lines changed
1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en-US ">
3
+ < head >
4
+ < meta charset ="UTF-8 "/>
5
+ < title > ω.js - Tests</ title >
6
+
7
+ <!-- jasmine styles -->
8
+ < link rel ="stylesheet " type ="text/css " href ="lib/jasmine/jasmine.css "/>
9
+ </ head >
10
+ < body >
11
+ <!-- jasmine -->
12
+ < script type ="text/javascript " src ="lib/jasmine/jasmine.js "> </ script >
13
+ < script type ="text/javascript " src ="lib/jasmine/jasmine-html.js "> </ script >
14
+
15
+ <!-- omega source -->
16
+ < script type ="text/javascript " src ="omega.js "> </ script >
17
+
18
+ <!-- specs -->
19
+ < script type ="text/javascript " src ="specs/dom.js "> </ script >
20
+
21
+ <!-- initialize -->
22
+ < script type ="text/javascript "> + function ( ) {
23
+ var env = jasmine . getEnv ( ) ;
24
+ env . updateInterval = 250 ;
25
+
26
+ env . addReporter ( new jasmine . HtmlReporter ) ;
27
+ env . execute ( ) ;
28
+ } ( ) </ script >
29
+ </ body >
30
+ </ html >
You can’t perform that action at this time.
0 commit comments