forked from linkesch/medium-editor-insert-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
40 lines (37 loc) · 1.73 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="bower_components/qunit/qunit/qunit.css">
<title>Unit Tests</title>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/qunit/qunit/qunit.js"></script>
<script src="bower_components/blanket/dist/qunit/blanket.min.js"></script>
<script>
if (location.href.match(/(\?|&)gruntReport($|&|=)/)) {
blanket.options("reporter", "node_modules/grunt-blanket-qunit/reporter/grunt-reporter.js");
}
</script>
<script src="/testem.js"></script>
<script src="test/lib/Blob.js"></script>
<script src="test/lib/sinon/sinon.js"></script>
<script src="bower_components/sinon-qunit/lib/sinon-qunit.js"></script>
<script src="bower_components/medium-editor/dist/js/medium-editor.min.js"></script>
<script src="bower_components/handlebars/handlebars.runtime.min.js"></script>
<script src="bower_components/blueimp-file-upload/js/vendor/jquery.ui.widget.js"></script>
<script src="bower_components/blueimp-file-upload/js/jquery.iframe-transport.js"></script>
<script src="bower_components/blueimp-file-upload/js/jquery.fileupload.js"></script>
<script src="bower_components/jquery-sortable/source/js/jquery-sortable-min.js"></script>
<script src="src/js/templates.js"></script>
<script src="src/js/core.js" data-cover></script>
<script src="src/js/images.js" data-cover></script>
<script src="src/js/embeds.js" data-cover></script>
<script src="test/core.js"></script>
<script src="test/images.js"></script>
<script src="test/embeds.js"></script>
</body>
</html>