diff --git a/__tests__/utils/get-shared-settings.test.ts b/__tests__/utils/shared-settings.test.ts similarity index 94% rename from __tests__/utils/get-shared-settings.test.ts rename to __tests__/utils/shared-settings.test.ts index cc505c33..e45e0f95 100644 --- a/__tests__/utils/get-shared-settings.test.ts +++ b/__tests__/utils/shared-settings.test.ts @@ -1,4 +1,4 @@ -import { getSharedSettings, SharedSettings } from '#/utils/get-shared-settings'; +import { getSharedSettings, SharedSettings } from '#/utils/shared-settings'; describe('getSharedSettings', () => { // eslint-disable-next-line @typescript-eslint/no-explicit-any @@ -87,4 +87,8 @@ describe('getSharedSettings', () => { }); }); }); + + describe('when the sharedSettings has `pluralize` key', () => { + // TODO + }); });