We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0873473 commit e4300bbCopy full SHA for e4300bb
1-js/05-data-types/02-number/3-repeat-until-number/_js.view/test.js
@@ -18,7 +18,7 @@ describe("readNumber", function() {
18
assert.strictEqual(readNumber(), 0);
19
});
20
21
- it("continues the loop unti meets a number", function() {
+ it("continues the loop until meets a number", function() {
22
prompt.onCall(0).returns("not a number");
23
prompt.onCall(1).returns("not a number again");
24
prompt.onCall(2).returns("1");
@@ -35,4 +35,4 @@ describe("readNumber", function() {
35
assert.isNull(readNumber());
36
37
38
-});
+});
0 commit comments