Skip to content

Instantly share code, notes, and snippets.

@trikitrok
Created July 18, 2025 17:19
Show Gist options
  • Save trikitrok/466882f41990a1d67d1be76203392552 to your computer and use it in GitHub Desktop.
Save trikitrok/466882f41990a1d67d1be76203392552 to your computer and use it in GitHub Desktop.
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