From 92c4f798aafa2392eb996505141d6b2b5fd250e1 Mon Sep 17 00:00:00 2001 From: Jonathan Neuteboom Date: Mon, 14 Oct 2024 18:36:03 +0200 Subject: [PATCH] Review comments --- src/rules/__tests__/no-missing-translations.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rules/__tests__/no-missing-translations.test.ts b/src/rules/__tests__/no-missing-translations.test.ts index 09bf3b1..da7ad95 100644 --- a/src/rules/__tests__/no-missing-translations.test.ts +++ b/src/rules/__tests__/no-missing-translations.test.ts @@ -12,13 +12,13 @@ jest.mock("fs", () => { readFileSync: jest.fn((file: string) => { if (file === "en.json") { return JSON.stringify({ - "Existing key": "Existing value", - "Key that only exists in en.json": "Value", + "Existing key": "Existing key", + "Key that only exists in en.json": "Key that only exists in en.json", }) } if (file === "nl.json") { return JSON.stringify({ - "Existing key": "Existing value", + "Existing key": "Bestaande sleutel", }) } }),