chore(developer): rmove unnecessary async from preinit test

This commit is contained in:
Dr Mark C. Sinclair 2024-04-25 11:09:37 +01:00
parent a1c1452615
commit e2ba026313

View file

@ -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');