forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtests.html
More file actions
51 lines (51 loc) · 1.34 KB
/
tests.html
File metadata and controls
51 lines (51 loc) · 1.34 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
<html>
<head>
<title>Mocha</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="mocha.js"></script>
<script src="chai.js"></script>
<script>
var should = chai.should();
mocha.setup('bdd');
</script>
<script src="js/library2.js" charset="utf-8"></script>
<script src="js/web.js" charset="utf-8"></script>
<!-- fixtures -->
<style>
span {
background: red;
}
p {
margin: 0;
}
</style>
<div id="mocha">
<ul class="report">
<li class="suite">
<h1>styling</h1>
<ul>
<li class="test">
<h2 class="rule-direct">Buildin 'style!css' loader, direct content</h2>
<h2 class="rule-import1">Buildin 'style!css' loader, imported rule</h2>
<h2 class="rule-import2">Buildin 'style!css' loader, double imported rule</h2>
</li>
<li class="test">
<h2 class="less-rule-direct">Buildin 'style!less' loader, direct content</h2>
<h2 class="less-rule-import1">Buildin 'style!less' loader, imported rule</h2>
<h2 class="less-rule-import2">Buildin 'style!less' loader, double imported rule</h2>
</li>
<li class="test">
<h2>Buildin file loader: <img src="img/fail.png" id="image" /></h2>
</li>
</ul>
</ul>
</div>
<script>
mocha.run();
</script>
</body>
</html>