-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
38 lines (32 loc) · 996 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
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE HTML>
<html>
<head>
<title>Javascript SDK Test Suite</title>
<!-- jquery -->
<!--<script src="http://code.jquery.com/jquery-1.7.min.js"></script>-->
<script src="vendor/jquery.js"></script>
<!-- qunit -->
<link rel="stylesheet" href="vendor/qunit.css" type="text/css" media="screen" />
<script src="vendor/qunit.js"></script>
<script>
QUnit.config.reorder = false;
</script>
<script src="js/dailycred.js"></script>
<!-- unit tests -->
<script src="unit/dailycred.js"></script>
<body>
<div>
<h1 id="qunit-header">Javascript SDK Plugin Test Suite</h1>
<h2 id="qunit-banner"></h2>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<div id="qunit-fixture">
<form id="dailycred">
<input type="email" name="email" placeholder="Email"><br>
<input type="password" name="pass" placeholder="Password"><br>
<input type="submit" value="Log In" class="btn">
</form>
</div>
</div>
</body>
</html>