mirror of
https://github.com/localForage/localForage.git
synced 2025-12-08 18:26:09 +00:00
36 lines
876 B
HTML
36 lines
876 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>localForage (polyfill) Tests!</title>
|
|
|
|
<link rel="stylesheet" type="text/css"
|
|
href="/bower_components/mocha/mocha.css">
|
|
|
|
<script>
|
|
if (window.Promise) {
|
|
window.Promise = undefined;
|
|
}
|
|
</script>
|
|
<script src="/bower_components/assert/assert.js"></script>
|
|
<script src="/bower_components/mocha/mocha.js"></script>
|
|
|
|
<script src="/bower_components/expect/index.js"></script>
|
|
|
|
<!-- Modernizr -->
|
|
<script src="/bower_components/modernizr/modernizr.js"></script>
|
|
|
|
<!-- Test runner -->
|
|
<script src="/test/runner.js"></script>
|
|
|
|
<!-- localForage -->
|
|
<script src="/dist/localforage.min.js"></script>
|
|
|
|
<!-- specs -->
|
|
<script src="/test/test.api.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
</body>
|
|
</html>
|