You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
624 B
30 lines
624 B
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Mocha Tests</title>
|
|
<link rel="stylesheet" href="mocha.css" />
|
|
<style>
|
|
#fixture {
|
|
position: absolute;
|
|
top: -9999;
|
|
left: -9999;
|
|
};
|
|
</style>
|
|
<script src="lib/jquery-3.2.1.js"></script>
|
|
<script src="test-lib/chai.js"></script>
|
|
<script src="test-lib/mocha.js"></script>
|
|
<script> mocha.setup('bdd');</script>
|
|
<script src="utils.js"></script>
|
|
<script src="tests.js"></script>
|
|
<script>
|
|
window.onload = function() {
|
|
mocha.run()
|
|
};
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
</body>
|
|
</html>
|