debug GH actions browser environment

This commit is contained in:
Lucas Gelfond
2024-12-23 16:44:04 -08:00
parent 8b3912f4fb
commit af7f2799c0
2 changed files with 25 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
<!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>