mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-05 14:13:44 +00:00
8 lines
201 B
TypeScript
8 lines
201 B
TypeScript
import { slugifyString } from './helpers';
|
|
|
|
test('it can slugify a string', () => {
|
|
expect(slugifyString('hello---world_ and then Some such-')).toEqual(
|
|
'hello-world-and-then-some-such'
|
|
);
|
|
});
|