Skip to content

Commit

Permalink
chore(common/web): initial test boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
markcsinclair committed Dec 9, 2024
1 parent b8cd016 commit fea40e2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions common/web/types/tests/kmx/kmx-plus/element-string.tests.ts
Original file line number Diff line number Diff line change
@@ -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);
});
});
});

0 comments on commit fea40e2

Please sign in to comment.