Skip to content

Commit

Permalink
correct & test
Browse files Browse the repository at this point in the history
  • Loading branch information
Caius-Bonus committed Oct 20, 2023
1 parent 0b6865e commit 8c55d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/common/string/slugify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe("slugify", () => {
assert.strictEqual(slugify("1,1"), "11");
assert.strictEqual(slugify("abc å DEF"), "abc_a_def");
assert.strictEqual(slugify("abc:DEF"), "abc_def");
assert.strictEqual(slugify("abc&DEF"), "abc_and_def");
assert.strictEqual(slugify("abc&DEF"), "abc_def");
assert.strictEqual(slugify("abc^^DEF"), "abcdef");
assert.strictEqual(slugify("abc DEF"), "abc_def");
assert.strictEqual(slugify("_abc DEF"), "abc_def");
Expand Down

0 comments on commit 8c55d4e

Please sign in to comment.