2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-20 09:19:02 +00:00
iconify/packages/browser-tests/tests/tests.html
2020-04-28 12:47:35 +03:00

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>