import { describe, expect, it } from "vitest"; import { objectEntries } from "@homarr/common"; import { languageMapping } from "@homarr/translation"; import { widgetImports } from ".."; describe("Widget properties with description should have matching translations", async () => { const enTranslation = await languageMapping().en(); objectEntries(widgetImports).forEach(([key, value]) => { Object.entries(value.definition.options).forEach( ([optionKey, optionValue]: [string, { withDescription?: boolean }]) => { it(`should have matching translations for ${optionKey} option description of ${key} widget`, () => { const option = enTranslation.default.widget[key].option; if (!(optionKey in option)) { throw new Error(`Option ${optionKey} not found in translation`); } const value = option[optionKey as keyof typeof option]; expect("description" in value).toBe(optionValue.withDescription); }); }, ); }); }); describe("Widget properties should have matching name translations", async () => { const enTranslation = await languageMapping().en(); objectEntries(widgetImports).forEach(([key, value]) => { Object.keys(value.definition.options).forEach((optionKey) => { it(`should have matching translations for ${optionKey} option name of ${key} widget`, () => { const option = enTranslation.default.widget[key].option; if (!(optionKey in option)) { throw new Error(`Option ${optionKey} not found in translation`); } const value = option[optionKey as keyof typeof option]; expect("label" in value).toBe(true); }); }); }); });