We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 924a389 commit 0783ab3Copy full SHA for 0783ab3
1-js/03-code-quality/05-testing-mocha/article.md
@@ -238,7 +238,7 @@ describe("pow", function() {
238
239
function makeTest(x) {
240
let expected = x * x * x;
241
- it(`${x}을/를 세 번 곱하면 ${expected}`입니다.`, function() {
+ it(`${x}을/를 세 번 곱하면 ${expected}입니다.`, function() {
242
assert.equal(pow(x, 3), expected);
243
});
244
}
0 commit comments