-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path12-mocha.html
50 lines (43 loc) · 1.24 KB
/
12-mocha.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<!-- sonuçları göstermek için mocha css eklendi -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mocha/3.2.0/mocha.css">
<!-- mocha çatısı eklendi -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/3.2.0/mocha.js"></script>
<script>
// bdd stili test aktif edildi.
mocha.setup('bdd');
</script>
<!-- chai ekle -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/3.5.0/chai.js"></script>
<script>
// chai birçok özelliğe sahiptir bunun yerine assert'i global yaparak kullanabilirsiniz.
let assert = chai.assert;
</script>
</head>
<body>
<script>
function us(x, y) {
let sonuc = x;
for (let i = 1; i < y; i++) {
sonuc *= x;
}
return sonuc;
}
``
`js run
alert('Sağ üst taraftaki "Oynat" butonuna basarak örneği çalıştırabilirsiniz.');
`
``
</script>
<!-- test kodları -->
<script src="12-mocha.js"></script>
<!-- id="mocha" elementi sonuçları gösterir.-->
<div id="mocha"></div>
<!-- testi çalıştır! -->
<script>
mocha.run();
</script>
</body>
</html>