mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-25 07:35:43 +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'
|
||
|
);
|
||
|
});
|