Skip to content

Commit

Permalink
Add tests for 1-to-2 chars mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
martpie committed Apr 28, 2024
1 parent 2e9fdb4 commit 4380adf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/__tests__/slugify.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,10 @@ describe("slugify", () => {
expect(
slugify("ĚěŘřŮů")
).toBe("eerruu");

expect(
slugify("Große")
).toBe("grosse");
});

it("should remove multiple following delimiters", () => {
Expand Down

0 comments on commit 4380adf

Please sign in to comment.