-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtests.html
More file actions
37 lines (29 loc) · 952 Bytes
/
tests.html
File metadata and controls
37 lines (29 loc) · 952 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
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>tests</title>
<link rel="stylesheet" href="./main.css">
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.1.1.css">
</head>
<body>
<!-- for testing purposes -->
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<form id="QuestionTags">
<input type="text" name="QuestionTags" value="">
<input type="submit" name="" value="Submit">
</form>
<form id="UsersTags">
<input type="text" name="UserTags" value="">
<input type="submit" name="" value="Submit">
</form>
<div id = "Results-Container-Wrapper">
<ul id = "Results-Container"></ul>
</div>
<script type="text/javascript" src = "index.js"></script>
<script src="https://code.jquery.com/qunit/qunit-2.1.1.js"></script>
<script src="fixtures.js"></script>
<script src="tests.js"></script>
</body>
</html>