Skip to content

Commit c8b3774

Browse files
committed
2-practice-tdd task are done
1 parent 207bcf8 commit c8b3774

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sprint-3/2-practice-tdd/count.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const countChar = require("./count");
44
// When the countChar function is called with these inputs,
55
// Then it should:
66

7-
// Scenario: Multiple Occurrences
7+
// Scenario:Multiple Occurrences
88
// Given the input string str,
99
// And a character char that may occur multiple times with overlaps within str (e.g., 'a' in 'aaaaa'),
1010
// When the function is called with these inputs,

Sprint-3/2-practice-tdd/get-ordinal-number.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const getOrdinalNumber = require("./get-ordinal-number");
55
// continue testing and implementing getOrdinalNumber for additional cases
66
// Write your tests using Jest - remember to run your tests often for continual feedback
77

8-
// Case 1: Identify the ordinal number for 1
8+
// Case1:Identify the ordinal number for 1
99
// When the number is 1,
1010
// Then the function should return "1st"
1111
test("should return '1st' for 1", () => {

0 commit comments

Comments
 (0)