From e2ba026313d4cbfc272fc6d3c45b98fe863d01b2 Mon Sep 17 00:00:00 2001 From: "Dr Mark C. Sinclair" Date: Thu, 25 Apr 2024 11:09:37 +0100 Subject: [PATCH] chore(developer): rmove unnecessary async from preinit test --- .../src/kmc-keyboard-info/test/test-keyboard-info-compiler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer/src/kmc-keyboard-info/test/test-keyboard-info-compiler.ts b/developer/src/kmc-keyboard-info/test/test-keyboard-info-compiler.ts index 4f0fd5c65a..47e16dc5f8 100644 --- a/developer/src/kmc-keyboard-info/test/test-keyboard-info-compiler.ts +++ b/developer/src/kmc-keyboard-info/test/test-keyboard-info-compiler.ts @@ -109,7 +109,7 @@ describe('keyboard-info-compiler', function () { assert.deepEqual(actual, expected); }); - it('check preinit creates langtagsByTag correctly', async function() { + it('check preinit creates langtagsByTag correctly', function() { const compiler = new KeyboardInfoCompiler(); // indirectly call preinit() assert.isNotNull(compiler); const en_langtag = langtags.find(({ tag }) => tag === 'en');