Skip to content

Commit 5a0eb94

Browse files
committed
I did sprint3 in module2
1 parent 632f5be commit 5a0eb94

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,6 @@ const countChar = require("./count");
1010
// When the function is called with these inputs,
1111
// Then it should correctly count occurrences of `char`.
1212

13-
test("should count multiple occurrences of a character", () => {
14-
const str = "aaaaa";
15-
const char = "a";
16-
const count = countChar(str, char);
17-
expect(count).toEqual(5);
18-
});
19-
2013
// Scenario: No Occurrences
2114
// Given the input string `str`,
2215
// And a character `char` that does not exist within `str`.

0 commit comments

Comments
 (0)