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 d8e8c60 commit 48c7af8Copy full SHA for 48c7af8
1 file changed
Sprint-3/2-practice-tdd/count.test.js
@@ -22,9 +22,3 @@ test("should count multiple occurrences of a character", () => {
22
// And a character char that does not exist within the case-sensitive str,
23
// When the function is called with these inputs,
24
// Then it should return 0, indicating that no occurrences of the char were found in the case-sensitive str.
25
-test("should return 0 when character does not exist in string", () => {
26
- const str = "mnopqrst";
27
- const char = "z";
28
- const count = countChar(str, char);
29
- expect(count).toEqual(0);
30
-});
0 commit comments