mirror of
https://github.com/thelounge/thelounge
synced 2024-11-27 22:40:23 +00:00
10 lines
308 B
JavaScript
10 lines
308 B
JavaScript
"use strict";
|
|
|
|
const expect = require("chai").expect;
|
|
const slugify = require("../../../../../client/js/libs/handlebars/slugify");
|
|
|
|
describe("slugify Handlebars helper", function() {
|
|
it("should only produce lowercase strings", function() {
|
|
expect(slugify("#TheLounge")).to.equal("\\#thelounge");
|
|
});
|
|
});
|