@qntm-code/utils
Version:
A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.
52 lines (51 loc) • 1.28 kB
JavaScript
import { getMonthNames } from '../../../src';
describe(`getMonthNames`, () => {
it(`Should return an array of month names`, () => {
expect(getMonthNames()).toEqual([
'January',
'February',
'March',
'April',
'May',
'June',
'July',
'August',
'September',
'October',
'November',
'December',
]);
});
it(`Should return an array of month names in the locale provided`, () => {
expect(getMonthNames({ locale: 'fr-FR' })).toEqual([
'janvier',
'février',
'mars',
'avril',
'mai',
'juin',
'juillet',
'août',
'septembre',
'octobre',
'novembre',
'décembre',
]);
});
it(`Should return an array of month names in the format provided`, () => {
expect(getMonthNames({ format: 'short' })).toEqual([
'Jan',
'Feb',
'Mar',
'Apr',
'May',
'Jun',
'Jul',
'Aug',
'Sep',
'Oct',
'Nov',
'Dec',
]);
});
});