Created
July 18, 2025 17:19
-
-
Save trikitrok/466882f41990a1d67d1be76203392552 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe('case insensitive word to key', () => { | |
it("keys are only lower case", () => { | |
const wordToKey = new CaseInsensitiveWordToKey(); | |
const result = wordToKey.getKey("A"); | |
expect(result).toEqual("a"); | |
}); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment