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 632f5be commit 5a0eb94Copy full SHA for 5a0eb94
1 file changed
Sprint-3/2-practice-tdd/count.test.js
@@ -10,13 +10,6 @@ const countChar = require("./count");
10
// When the function is called with these inputs,
11
// Then it should correctly count occurrences of `char`.
12
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
-
20
// Scenario: No Occurrences
21
// Given the input string `str`,
22
// And a character `char` that does not exist within `str`.
0 commit comments