mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-12-12 20:46:52 +01:00
8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
import { expectTypeOf, test } from "vitest"
|
|
import en from "../translations/en-US.json"
|
|
import fr from "../translations/fr-FR.json"
|
|
|
|
test("translations types should match", () => {
|
|
expectTypeOf(en).toEqualTypeOf(fr)
|
|
})
|