-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.02 KB
/
index.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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<title>Backbone Gelato - Testing</title>
<meta name="description" content="Base modules for building modern applications with Backbone."/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
<link href="../dist/backbone-gelato.css" rel="stylesheet">
</head>
<body>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/sinon/pkg/sinon.js"></script>
<script src="../node_modules/jquery/dist/jquery.js"></script>
<script src="../node_modules/lodash/lodash.js"></script>
<script src="../node_modules/backbone/backbone.js"></script>
<script src="../dist/backbone-gelato.js"></script>
<script>
mocha.ui('bdd');
window.expect = chai.expect;
</script>
<script src="./specs/application.js"></script>
<script>
mocha.checkLeaks();
mocha.run();
</script>
</body>
</html>