-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathtest.html
49 lines (40 loc) · 3.5 KB
/
test.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
45
46
47
48
49
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html;charset=UTF-8" http-equiv="Content-Type"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Jasmine suite</title>
<link rel="shortcut icon" type="image/png" href="/__images__/jasmine_favicon.png">
<link rel="stylesheet" href="node_modules/jasmine/node_modules/jasmine-core/lib/jasmine-core/jasmine.css" type="text/css" media="screen"/>
<link href="bower_components/bootstrap-css/css/bootstrap.min.css" rel="stylesheet">
<link href="bower_components/fontawesome/css/font-awesome.min.css" rel="stylesheet">
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="bower_components/d3/d3.js" type="text/javascript"></script>
<script src="bower_components/nvd3/build/nv.d3.js" type="text/javascript"></script>
<script src="bower_components/bootstrap-css/js/bootstrap.min.js"></script>
<script src="bower_components/moment/moment.js"></script>
<script src="node_modules/jasmine/node_modules/jasmine-core/lib/jasmine-core/jasmine.js" type="text/javascript"></script>
<script src="node_modules/jasmine/node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js" type="text/javascript"></script>
<script src="node_modules/jasmine/node_modules/jasmine-core/lib/jasmine-core/json2.js" type="text/javascript"></script>
<script src="node_modules/jasmine/node_modules/jasmine-core/lib/jasmine-core/boot.js" type="text/javascript"></script>
<script src="node_modules/jasmine-jquery/lib/jasmine-jquery.js?body=true" type="text/javascript"></script>
<script src="node_modules/jasmine-ajax/lib/mock-ajax.js" type="text/javascript"></script>
<script src="spec/javascripts/helpers/test_responses.js" type="text/javascript"></script>
<script src="dist/spectral-workbench.js" type="text/javascript"></script>
<link href="dist/spectral-workbench.css" rel="stylesheet">
<script src="spec/javascripts/api_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/graph_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/image_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/operation_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/reversal_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/set_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/spectrum_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/tag_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/ui_spec.js" type="text/javascript"></script>
</head>
<!-- TODO: turbolinks breaks spec filter links -->
<body data-no-turbolink>
<div id="jasmine_content">
</div>
</body>
</html>