-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
26 lines (26 loc) · 1006 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Diracjs Library: Unit Tests</title>
<link rel="stylesheet"
href="https://code.jquery.com/qunit/qunit-2.0.1.css"
integrity="sha256-ElM3eC0OlL31njlbz7E6mQBmfpfu2yO2seakfMpAwtQ="
crossorigin="anonymous">
</head>
<body>
<!-- <h1>Diracjs Library: Unit Tests</h1> -->
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<!-- res/* and external links contain external resources, all w/ permissive open source inspired licenses -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/3.4.1/math.min.js"
integrity="sha256-b486voeqY845/PrKttL647VLqwf61hXYk+PzSPV+jbc="
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/qunit/qunit-2.0.1.js"
integrity="sha256-rKYGPBj0xqS5fSsUMhfYXvd56IZatnEhMmAWIpLQWTc="
crossorigin="anonymous"></script>
<!-- my own work -->
<script src="dirac.js"></script>
<script src="test.js"></script>
</body>
</html>