From 2f615c93802afda9ab6e1ca7c11cfbf5fa5edaa4 Mon Sep 17 00:00:00 2001 From: Sabine Date: Tue, 31 Mar 2026 19:24:17 +0200 Subject: [PATCH] feat(developer): change test --- .../test/keylayout-to-kmn-converter.tests.ts | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/developer/src/kmc-convert/test/keylayout-to-kmn-converter.tests.ts b/developer/src/kmc-convert/test/keylayout-to-kmn-converter.tests.ts index fefc913467..2dc4affe1b 100644 --- a/developer/src/kmc-convert/test/keylayout-to-kmn-converter.tests.ts +++ b/developer/src/kmc-convert/test/keylayout-to-kmn-converter.tests.ts @@ -36,16 +36,6 @@ describe('KeylayoutToKmnConverter', function () { }); }); - describe('Run kmc-convert with or without outputfile', async function () { - const converter = new KeylayoutToKmnConverter(compilerTestCallbacks, compilerTestOptions); - const infile = makePathToFixture('../data/test.keylayout'); - const outfile = makePathToFixture('../data/test.kmn'); - const out_diff = makePathToFixture('../data/test_OtherOutputName.kmn'); - const base = await converter.run(infile, outfile); - assert.deepEqual(base, await converter.run(infile)); - assert.deepEqual(base, await converter.run(infile, null)); - }); - describe('RunTestFiles resulting in errors ', function () { const sut = new KeylayoutToKmnConverter(compilerTestCallbacks, compilerTestOptions); [ @@ -91,10 +81,6 @@ describe('KeylayoutToKmnConverter', function () { [makePathToFixture('../data/Test_ambiguous_keys.keylayout')], [makePathToFixture('../data/Test_nr_elements.keylayout')], [makePathToFixture('../data/Test.keylayout')], - [makePathToFixture('../data/Test_mixedEncodings.keylayout')], - [makePathToFixture('../data/Test_Character_Codepoint_C0.keylayout')], - [makePathToFixture('../data/Test_Character_Codepoint_C2.keylayout')], - [makePathToFixture('../data/Test_Character_Codepoint_C3.keylayout')], ].forEach(function (files) { it(files + " should give no errors ", async function () { sut.run(files[0]);