We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 291b5c0 commit b4379c5Copy full SHA for b4379c5
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