* core_tests.js and navigation_tests.js have more tests * qunit_test_runner.html runs QUnit in a browser (without karma) and provides a generic iframe based platform to test different presentations. * copy qunit.js and syn.js into the repo. This allows qunit_test_runner.html to work without any dependency on node/npm. (Karma obviously does need them.) * Move jscs cli option to .jscsrc instead
27 lines
606 B
HTML
27 lines
606 B
HTML
<!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="test/qunit/qunit.css">
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
|
|
<div id="qunit-fixture"></div>
|
|
|
|
<script src="test/qunit/qunit.js"></script>
|
|
<!-- The QUnit tests. -->
|
|
<script src="test/helpers.js"></script>
|
|
<!-- Core tests -->
|
|
<script src="test/core_tests.js"></script>
|
|
<!-- Plugins -->
|
|
<script src="test/navigation_tests.js"></script>
|
|
|
|
</body>
|
|
</html>
|