39 lines
948 B
HTML
39 lines
948 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- add mocha css, to show results -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mocha/3.2.0/mocha.css">
|
|
<!-- add mocha framework code -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/3.2.0/mocha.js"></script>
|
|
<script>
|
|
mocha.setup('bdd'); // minimal setup
|
|
</script>
|
|
<!-- add chai -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/3.5.0/chai.js"></script>
|
|
<script>
|
|
// chai has a lot of stuff, let's make assert global
|
|
let assert = chai.assert;
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<script>
|
|
function pow(x, n) {
|
|
/* function code is to be written, empty now */
|
|
}
|
|
</script>
|
|
|
|
<!-- the script with tests (describe, it...) -->
|
|
<script src="test.js"></script>
|
|
|
|
<!-- the element with id="mocha" will contain test results -->
|
|
<div id="mocha"></div>
|
|
|
|
<!-- run tests! -->
|
|
<script>
|
|
mocha.run();
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|