diff --git a/1-js/03-code-quality/05-testing-mocha/article.md b/1-js/03-code-quality/05-testing-mocha/article.md index a22f44aa..c7b164b1 100644 --- a/1-js/03-code-quality/05-testing-mocha/article.md +++ b/1-js/03-code-quality/05-testing-mocha/article.md @@ -117,7 +117,7 @@ For the future, let's note that there are advanced test-runners, like [karma](ht Let's make a simple implementation of `pow`, for tests to pass: ```js -function pow() { +function pow(x, n) { return 8; // :) we cheat! } ```