-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
20 lines (20 loc) · 835 Bytes
/
test.html
File metadata and controls
20 lines (20 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html ng-app="wishlistTest">
<head>
<meta charset="utf-8">
<title>Wishlist tests</title>
<link rel="stylesheet" media="all" href="http://cdnjs.cloudflare.com/ajax/libs/mocha/2.0.1/mocha.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular-route.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/mocha/2.0.1/mocha.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/chai/1.10.0/chai.js"></script>
<script src="main.js"></script>
<script src="test.js"></script>
</head>
<body>
<div id="mocha"><p><a href=".">Index</a></p></div>
<div id="messages"></div>
<div id="fixtures"></div>
<div ng-view></div>
</body>
</html>