-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathcountdownTimer.tests.html
26 lines (23 loc) · 1.02 KB
/
countdownTimer.tests.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 http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>jQuery CountdownTimer Test Coverage</title>
<link rel="stylesheet" href="../src/bower_components/qunit/qunit/qunit.css" type="text/css" media="screen">
<link rel="stylesheet" href="../src/css/jQuery.countdownTimer.css" type="text/css">
<script type="text/javascript" src="../src/bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="../src/bower_components/qunit/qunit/qunit.js"></script>
<script type="text/javascript" src="../src/bower_components/sinon/index.js"></script>
<script>
$.noRequestAnimationFrame = true; // Use setInterval by Sinon
</script>
<script type="text/javascript" src="../src/js/jQuery.countdownTimer.js"></script>
<script type="text/javascript" src="js/jQuery.countdownTimer.tests.js"></script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture">
<div id="countd"></div>
</div>
</body>
</html>