ds4/spec/localization/localization.spec.ts
Johannes Loher 91b222a14e
Some checks failed
ci/woodpecker/pr/checks Pipeline failed
chore: switch to bun as package manager and test runner
2023-07-22 03:04:04 +02:00

16 lines
427 B
TypeScript

// SPDX-FileCopyrightText: 2021 Johannes Loher
//
// SPDX-License-Identifier: MIT
import { describe, expect, it } from "bun:test";
import de from "../../lang/de.json";
import en from "../../lang/en.json";
describe("English and german localization files", () => {
it("should have the same keys.", () => {
const deKeys = Object.keys(de);
const enKeys = Object.keys(en);
expect(deKeys).toEqual(enKeys);
});
});