mirror of
https://github.com/strapi/strapi.git
synced 2025-08-08 08:46:42 +00:00
12 lines
222 B
JavaScript
12 lines
222 B
JavaScript
'use strict';
|
|
|
|
const { getIsoLocales } = require('../iso-locales')();
|
|
|
|
describe('ISO locales', () => {
|
|
test('getIsoLocales', () => {
|
|
const locales = getIsoLocales();
|
|
|
|
expect(locales).toMatchSnapshot();
|
|
});
|
|
});
|