up
This commit is contained in:
parent
4ae129054e
commit
ab9ab64bd5
476 changed files with 3370 additions and 532 deletions
46
1-js/03-code-quality/05-testing-mocha/pow-4.view/index.html
Normal file
46
1-js/03-code-quality/05-testing-mocha/pow-4.view/index.html
Normal file
|
@ -0,0 +1,46 @@
|
|||
<!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>
|
||||
// enable bdd-style testing
|
||||
mocha.setup('bdd');
|
||||
</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) {
|
||||
let result = 1;
|
||||
|
||||
for (let i = 0; i < n; i++) {
|
||||
result *= x;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
</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>
|
Loading…
Add table
Add a link
Reference in a new issue