UNPKG

1.15 kBHTMLView Raw
1<!doctype html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <title>localForage Tests!</title>
6
7 <link rel="stylesheet" href="/bower_components/mocha/mocha.css">
8
9 <script src="/bower_components/assert/assert.js"></script>
10 <script src="/bower_components/mocha/mocha.js"></script>
11
12 <script src="/bower_components/expect/index.js"></script>
13
14 <script>
15 // Virtually remove support for the drivers.
16 // This has to be done before localforage
17 // and Modernizr execute.
18
19 try {
20 window.indexedDB.open = null;
21 } catch (error) { }
22
23 try {
24 window.localStorage.setItem = null;
25 } catch (error) { }
26
27 try {
28 window.openDatabase = null;
29 } catch (error) { }
30 </script>
31
32 <!-- Modernizr -->
33 <script src="/bower_components/modernizr/modernizr.js"></script>
34
35 <!-- Test runner -->
36 <script src="/test/runner.js"></script>
37
38 <!-- localForage -->
39 <script src="/dist/localforage.js"></script>
40
41 <!-- specs -->
42 <script src="/test/test.nodriver.js"></script>
43 </head>
44 <body>
45 <div id="mocha"></div>
46 </body>
47</html>