-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathacceptanceTests.html
23 lines (22 loc) · 1.34 KB
/
acceptanceTests.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Hotcakejs unit test suite</title>
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/qunit/1.14.0/qunit.css" />
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore-min.js" type="text/javascript"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone.js" type="text/javascript"></script>
<script src="js/Hotcake.js"></script>
<script src="tests/acceptanceTestBase.js"></script>
<script src="tests/Hotcake-acceptanceTests.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/qunit/1.14.0/qunit.js"></script>
</head>
<body>
This file tests the entirety of Hotcake, working together, in all major cases.
<br />These tests are meant to be a set of acceptance gates before a build of Hotcake can be considered ready for release.
<br />You may recognize the scripts from each of these tests as the ones from the /examples/ folder. The examples themselves cover every major use case of Hotcake, and these tests make sure those examples work correctly.
<br/><br />
<div id="qunit"></div>
<div id="qunit-fixture"></div>
</body>
</html>