-
Notifications
You must be signed in to change notification settings - Fork 6.7k
/
qunit_test_runner.html
29 lines (29 loc) · 1.01 KB
/
qunit_test_runner.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
<!DOCTYPE html>
<!--
Copyright 2016 Henrik Ingo (@henrikingo)
Released under the MIT license. See LICENSE file.
-->
<html>
<head>
<meta charset="utf-8">
<title>QUnit tests for impress.js</title>
<link rel="stylesheet" href="node_modules/qunit/qunit/qunit.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="node_modules/qunit/qunit/qunit.js"></script>
<script src="node_modules/qunit-assert-close/qunit-assert-close.js"></script>
<!-- The QUnit tests. -->
<script src="test/helpers.js"></script>
<!-- Core tests -->
<script src="test/core_tests.js"></script>
<script src="test/non_default.js"></script>
<!-- Plugins -->
<script src="src/plugins/navigation/navigation_tests.js"></script>
<script src="test/plugins/rel/relative_to_screen_size_tests.js"></script>
<script src="test/plugins/rel/rotation_tests.js"></script>
<script src="test/plugins/rel/padding_tests.js"></script>
<script src="test/plugins/rel/rel_to_tests.js"></script>
</body>
</html>