forked from oner-team/oner-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pc.html
38 lines (33 loc) · 1.6 KB
/
pc.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
35
36
37
38
<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.pc unit test</title>
</head>
<body>
<div style="font-size:12px;color:#888;position:fixed; top:7px; left:16px;">当前是PC版本单测, <a href="./index.html">进入Modern Browser版单测</a></div>
<div id="mocha"></div>
<script type="text/javascript" src="./test/json2.js"></script>
<!--[if lt IE 10]>
<script type="text/javascript" src="./node_modules/es5-shim/es5-shim.min.js"></script>
<script type="text/javascript" src="./node_modules/es5-shim/es5-sham.min.js"></script>
<![endif]-->
<!-- Promise polyfill -->
<script type="text/javascript" src="./node_modules/lie/dist/lie.polyfill.js"></script>
<!--<script type="text/javascript" src="http://30.9.240.212:8001/dist/natty-storage.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.pc.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>