TypeScript/tests/webTestResults.html
2017-06-01 08:30:23 -07:00

40 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
<link rel="icon" href="./webhost/favicon-32x32.png"/>
<style>
.btn {
color: #ffffff;
background: #3498db;
border-radius: 30px;
font-size: 50px;
}
.btn:hover { background: #50c7ff; }
.btn:focus { background: #50c7ff; }
</style>
</head>
<body>
<div id='setup'>
<button id='runTestBtn' onclick='runTests()' type="button" class="btn">Run Tests</button>
</div>
<div id="mocha"></div>
<script src="../node_modules/mocha/mocha.js"></script>
<script>mocha.setup('bdd')</script>
<script src="../built/local/bundle.js"></script>
<script>
// mocha is going to call this on every test result and make the results page unusable for a long
// time after the tests are already done, doesn't seem necessary
Mocha.utils.highlightTags = function() {}
function runTests() {
mocha.checkLeaks();
mocha.globals(['jQuery']);
mocha.run();
}
</script>
</body>
</html>