-
Notifications
You must be signed in to change notification settings - Fork 128
/
test.html
46 lines (36 loc) · 2.59 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
<!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" />
<meta name="theme-color" content="#000">
<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="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="node_modules/horsey/dist/horsey.css" rel="stylesheet">
<link rel="stylesheet" href="dist/PublicLab.Editor.css" type="text/css" media="screen"/>
<script src="node_modules/jquery/dist/jquery.min.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="dist/PublicLab.Editor.js"></script>
<script src="spec/javascripts/button_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/editor_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/prepopulated_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/wysiwyg_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/history_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/rich_text_module_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/main_image_module_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/tags_module_spec.js" type="text/javascript"></script>
<script src="spec/javascripts/formatter_spec.js" type="text/javascript"></script>
</head>
<!-- TODO: turbolinks breaks spec filter links -->
<body data-no-turbolink>
<div id="jasmine_content"></div>
</body>
</html>