23 lines
629 B
TypeScript
23 lines
629 B
TypeScript
import {
|
|
convertSecondsToFormattedDateString,
|
|
slugifyString,
|
|
underscorizeString,
|
|
} from './helpers';
|
|
|
|
test('it can slugify a string', () => {
|
|
expect(slugifyString('hello---world_ and then Some such-')).toEqual(
|
|
'hello-world-and-then-some-such'
|
|
);
|
|
});
|
|
|
|
test('it can underscorize a string', () => {
|
|
expect(underscorizeString('hello---world_ and then Some such-')).toEqual(
|
|
'hello_world_and_then_some_such'
|
|
);
|
|
});
|
|
|
|
test('it can keep the correct date when converting seconds to date', () => {
|
|
const dateString = convertSecondsToFormattedDateString(1666325400);
|
|
expect(dateString).toEqual('2022-10-21');
|
|
});
|