-
Notifications
You must be signed in to change notification settings - Fork 192
/
Copy pathindex.html
26 lines (23 loc) · 751 Bytes
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<link href="../node_modules/qunit/qunit/qunit.css" rel="stylesheet" />
<title>jCanvas Unit Tests</title>
</head>
<body>
<h1>jCanvas Unit Tests</h1>
<p>
This is a collection of jCanvas unit tests written by
<a href="https://calebevans.me/" target="_blank">Caleb Evans</a> using the
<a href="https://qunitjs.com/" target="_blank">QUnit</a> testing
framework.
</p>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="../node_modules/jquery/dist/jquery.js"></script>
<script src="../node_modules/qunit/qunit/qunit.js"></script>
<script src="../dist/umd/jcanvas.min.js"></script>
<script src="tests/jcanvas-tests.js"></script>
</body>
</html>