Skip to content

Commit 8fb5183

Browse files
committed
--fix : coverage 100%
1 parent 05a97fc commit 8fb5183

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/_Problems_/anagrams/anagrams.test.js

+9
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,14 @@ describe('Anagrams', () => {
7575
}),
7676
).toBe(true);
7777
});
78+
79+
it('Should return FALSE for `Hello` & `Hallo`', () => {
80+
expect(
81+
checkAnagrams({
82+
firstString: 'Hello',
83+
secondString: 'Hallo',
84+
}),
85+
).toBe(false);
86+
});
7887
});
7988
});

0 commit comments

Comments
 (0)