From fea40e2689b8f185568a2b42f6575dcae846077f Mon Sep 17 00:00:00 2001 From: "Dr Mark C. Sinclair" Date: Mon, 9 Dec 2024 11:47:54 +0000 Subject: [PATCH] chore(common/web): initial test boilerplate --- .../kmx/kmx-plus/element-string.tests.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 common/web/types/tests/kmx/kmx-plus/element-string.tests.ts diff --git a/common/web/types/tests/kmx/kmx-plus/element-string.tests.ts b/common/web/types/tests/kmx/kmx-plus/element-string.tests.ts new file mode 100644 index 00000000000..438c16bf4a8 --- /dev/null +++ b/common/web/types/tests/kmx/kmx-plus/element-string.tests.ts @@ -0,0 +1,19 @@ +/* + * Keyman is copyright (C) SIL Global. MIT License. + * + * Created by Dr Mark C. Sinclair on 2024-12-09 + * + * Test code for element-string.ts + */ + +import 'mocha'; +import { assert } from 'chai'; + +describe('Test of ElementString', () => { + describe('Test of ElemElement', () => { + describe('Test of isEqual()', () => { + assert.isTrue(true); + assert.isFalse(false); + }); + }); +});