mirror of
https://github.com/jlengrand/undercover.git
synced 2026-03-10 08:51:23 +00:00
23 lines
495 B
HTML
23 lines
495 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link href="../node_modules/mocha/mocha.css" rel="stylesheet" />
|
|
<script src="../node_modules/mocha/mocha.js"></script>
|
|
<script src="../node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
<script>
|
|
mocha.setup('bdd');
|
|
</script>
|
|
|
|
<script type="module">
|
|
import './under-cover.test.js';
|
|
|
|
mocha.checkLeaks();
|
|
mocha.run();
|
|
</script>
|
|
</body>
|
|
</html>
|