-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestRunner.html
More file actions
24 lines (24 loc) · 764 Bytes
/
testRunner.html
File metadata and controls
24 lines (24 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<script src="./lib/jquery-min.js"></script>
<link rel="stylesheet" href="./lib/qunit.css" type="text/css" media="screen" />
<script type="text/javascript" src="./lib/qunit.js"></script>
</head>
<body>
<h1 id="qunit-header">TwitTweet tests</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<div id="qunit-fixture">
<div id="target">
</div>
</div>
</body>
<!-- dependencies -->
<script src="./lib/jquery-ui-min.js"></script>
<script src="./src/twitTweet.js"></script>
<!-- test(s) -->
<script src="./test/initiate-test.js"></script>
<script src="./test/twitterLinkParser-test.js"></script>
</html>