-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLeaderboardTests.html
33 lines (26 loc) · 1.15 KB
/
LeaderboardTests.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Leaderboard Jasmine Test Runner</title>
<link rel="stylesheet" type="text/css" href="jasmine-1.0.2/jasmine.css">
<script type="text/javascript" src="jasmine-1.0.2/jasmine.js"></script>
<script type="text/javascript" src="jasmine-1.0.2/jasmine-html.js"></script>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1.5.0");
</script>
<!-- include source files here... -->
<script type="text/javascript" src="leaderboard2.js"></script>
<!-- include spec files here... -->
<script type="text/javascript" src="leaderboard2-spec.js"></script>
</head>
<body>
<h1>Leaderboard tests</h1>
<p>Tests for the code which produces our leaderboard. To run the vendor tests which check that stackoverflow API is available and working as we expect, look at the <a href="VendorTests.html">Vendor tests</a></p>
<script type="text/javascript">
jasmine.getEnv().addReporter(new jasmine.TrivialReporter());
jasmine.getEnv().execute();
</script>
</body>
</html>