We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6ce9e71 + b4379c5 commit f65c25dCopy full SHA for f65c25d
1-js/03-code-quality/05-testing-mocha/article.md
@@ -51,7 +51,7 @@ describe("pow", function() {
51
A spec has three main building blocks that you can see above:
52
53
`describe("title", function() { ... })`
54
-: What functionality we're describing. In our case we're describing the function `pow`. Used to group "workers" -- the `it` blocks.
+: What functionality we're describing? In our case we're describing the function `pow`. Used to group "workers" -- the `it` blocks.
55
56
`it("use case description", function() { ... })`
57
: In the title of `it` we *in a human-readable way* describe the particular use case, and the second argument is a function that tests it.
0 commit comments