mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
24 lines
578 B
HTML
24 lines
578 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
|
|
<title>Unit Tests</title>
|
|
|
|
<link rel="stylesheet" href="node_modules/mocha/mocha.css">
|
|
<script>
|
|
window.ZeroMdConfig = {
|
|
foo: 'bar'
|
|
}
|
|
</script>
|
|
<script type="module" src="build/bundle.js"></script>
|
|
<script defer src="node_modules/chai/chai.js"></script>
|
|
<script defer src="node_modules/mocha/mocha.js"></script>
|
|
<script defer src="index.spec.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="mocha"></div>
|
|
</body>
|
|
</html>
|