mapcomplete/test/UI/ValidatedTextFieldTranslations.ts

21 lines
887 B
TypeScript
Raw Normal View History

2022-09-08 21:40:48 +02:00
import { describe } from "mocha"
import ValidatedTextField from "../../UI/Input/ValidatedTextField"
import { fail } from "assert"
import Translations from "../../UI/i18n/Translations"
describe("ValidatedTextFields", () => {
2022-06-20 01:58:20 +02:00
it("should all have description in the translations", () => {
2022-09-08 21:40:48 +02:00
const ts = Translations.t.validation
2022-06-20 01:58:20 +02:00
const missingTranslations = Array.from(ValidatedTextField.allTypes.keys())
2022-09-08 21:40:48 +02:00
.filter((key) => ts[key] === undefined || ts[key].description === undefined)
.filter((key) => key !== "distance")
2022-06-20 03:14:44 +02:00
if (missingTranslations.length > 0) {
2022-09-08 21:40:48 +02:00
fail(
"The validated text fields don't have a description defined in en.json for " +
missingTranslations.join(", ") +
". (Did you just add one? Run `npm run generate:translations`)"
)
2022-06-20 01:58:20 +02:00
}
})
})