1 |
3a515b92
|
cagy
|
<!DOCTYPE html>
|
2 |
|
|
<html>
|
3 |
|
|
<head>
|
4 |
|
|
<meta charset="utf-8">
|
5 |
|
|
<title>QUnit Integration Test</title>
|
6 |
|
|
<link rel="stylesheet" href="../node_modules/qunitjs/qunit/qunit.css">
|
7 |
|
|
</head>
|
8 |
|
|
<body>
|
9 |
|
|
<script src="../lib/loglevel.js" loglevel-name="logging"></script>
|
10 |
|
|
<script>
|
11 |
|
|
var logging = log.noConflict();
|
12 |
|
|
</script>
|
13 |
|
|
<!-- Pretend the users code is included here -->
|
14 |
|
|
<div id="qunit"></div>
|
15 |
|
|
<div id="qunit-fixture"></div>
|
16 |
|
|
<script src="../node_modules/qunitjs/qunit/qunit.js"></script>
|
17 |
|
|
<script src="test-qunit.js"></script>
|
18 |
|
|
</body>
|
19 |
|
|
</html>
|