mirror of
https://github.com/iconify/iconify.git
synced 2024-11-10 07:11:00 +00:00
37 lines
738 B
HTML
37 lines
738 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
|
||
|
<meta name="viewport" content="width=1024" />
|
||
|
<title>Tests</title>
|
||
|
<link href="../node_modules/mocha/mocha.css" rel="stylesheet" />
|
||
|
<style>
|
||
|
#debug {
|
||
|
display: none;
|
||
|
}
|
||
|
#debug > div {
|
||
|
margin: 8px 0;
|
||
|
border: 1px solid #ccc;
|
||
|
padding: 8px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="mocha"></div>
|
||
|
<div id="debug"></div>
|
||
|
|
||
|
<script src="../node_modules/mocha/mocha.js"></script>
|
||
|
<script src="../node_modules/chai/chai.js"></script>
|
||
|
<script>
|
||
|
mocha.setup('bdd');
|
||
|
</script>
|
||
|
|
||
|
<!-- tests -->
|
||
|
|
||
|
<script class="mocha-exec">
|
||
|
mocha.run();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|