Skip to content

Commit df109f5

Browse files
lenchen1112ArvinH
andauthored
Automated testing with Mocha (#50)
* feat: translation of Automated testing with Mocha * Apply suggestions from code review Co-Authored-By: Jason Huang <[email protected]> * Apply suggestions from code review Co-Authored-By: ArvinH <[email protected]>
1 parent cb57bf0 commit df109f5

File tree

3 files changed

+142
-139
lines changed

3 files changed

+142
-139
lines changed

1-js/03-code-quality/05-testing-mocha/3-pow-test-wrong/solution.md

+11-10
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
The test demonstrates one of the temptations a developer meets when writing tests.
1+
該測試演示了開發者在寫測試時遇到的某種嘗試。
22

3-
What we have here is actually 3 tests, but layed out as a single function with 3 asserts.
3+
這邊我們實際上有三個測試,但卻只用單一個函式來寫三句斷言。
44

5-
Sometimes it's easier to write this way, but if an error occurs, it's much less obvious what went wrong.
5+
有時候這種方式更容易寫,但若問題產生時,想知道是什麼出問題也就更不明顯了。
66

7-
If an error happens in the middle of a complex execution flow, then we'll have to figure out the data at that point. We'll actually have to *debug the test*.
7+
若錯誤發生在複雜執行流程的中間,那我們得知道那個時間點的資料是什麼。我們實際上就必須 *除錯該測試*
88

9-
It would be much better to break the test into multiple `it` blocks with clearly written inputs and outputs.
9+
將測試打散為多個清楚寫下輸出輸入的 `it` 區塊會更好。
10+
11+
像這樣:
1012

11-
Like this:
1213
```js
1314
describe("Raises x to power n", function() {
1415
it("5 in the power of 1 equals 5", function() {
@@ -25,10 +26,9 @@ describe("Raises x to power n", function() {
2526
});
2627
```
2728

28-
We replaced the single `it` with `describe` and a group of `it` blocks. Now if something fails we would see clearly what the data was.
29-
30-
Also we can isolate a single test and run it in standalone mode by writing `it.only` instead of `it`:
29+
我們替換單一個 `it``describe` 並組合 `it` 區塊們。現在若有東西失敗了,我們將可以清楚看出資料是什麼。
3130

31+
同樣地,我們可以經由寫下 `it.only` 而非 `it`,以分離單一測試並在獨立模式中執行它:
3232

3333
```js
3434
describe("Raises x to power n", function() {
@@ -37,7 +37,7 @@ describe("Raises x to power n", function() {
3737
});
3838

3939
*!*
40-
// Mocha will run only this block
40+
// Mocha 將只運行這個區塊
4141
it.only("5 in the power of 2 equals 25", function() {
4242
assert.equal(pow(5, 2), 25);
4343
});
@@ -48,3 +48,4 @@ describe("Raises x to power n", function() {
4848
});
4949
});
5050
```
51+

1-js/03-code-quality/05-testing-mocha/3-pow-test-wrong/task.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ importance: 5
22

33
---
44

5-
# What's wrong in the test?
5+
# 該測試中有什麼問題?
66

7-
What's wrong in the test of `pow` below?
7+
底下的 `pow` 測試有什麼問題?
88

99
```js
1010
it("Raises x to the power n", function() {
@@ -21,4 +21,5 @@ it("Raises x to the power n", function() {
2121
});
2222
```
2323

24-
P.S. Syntactically the test is correct and passes.
24+
註:語法上來說,該測試是正確且可通過的。
25+

0 commit comments

Comments
 (0)