konowebcodecs/tests/environment-check.test.html
2024-12-23 16:44:04 -08:00

22 lines
547 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Environment Check</title>
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script>
mocha.setup("bdd");
window.expect = chai.expect;
</script>
<script src="./environment-check.test.js"></script>
<script>
mocha.run();
</script>
</body>
</html>