forked from oner-team/oner-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (30 loc) · 1.24 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
30
31
32
33
34
<html>
<head>
<meta charset="utf-8">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
<meta http-equiv="cleartype" content="on">
<title>natty-fetch unit test</title>
</head>
<body>
<div style="font-size:12px;color:#888;position:fixed; top:7px; left:16px;">
当前是Modern Browser版本单测,
<a href="pc.html">进入PC版单测</a>
</div>
<div id="mocha"></div>
<!-- Promise polyfill -->
<script type="text/javascript" src="./node_modules/lie/dist/lie.polyfill.js"></script>
<script type="text/javascript" src="./node_modules/natty-storage/dist/natty-storage.js"></script>
<!--<script type="text/javascript" src="./dist/natty-fetch.min.js"></script>-->
<script type="text/javascript" src="./dist/natty-fetch.js"></script>
<!-- unit test scripts start -->
<link rel="stylesheet" href="./node_modules/mocha/mocha.css">
<script src="./node_modules/mocha/mocha.js"></script>
<script src="./node_modules/expect.js/index.js"></script>
<script>mocha.setup('bdd')</script>
<script src="./test/bundle.js"></script>
<script>mocha.run()</script>
<!-- unit test scripts end -->
</body>
</html>