diff options
| author | Brian Cully <bjc@spork.org> | 2025-07-28 10:18:58 -0400 |
|---|---|---|
| committer | Brian Cully <bjc@spork.org> | 2025-07-28 10:18:58 -0400 |
| commit | 21664833f7ede94d812135e1b4ce88c241b5bf69 (patch) | |
| tree | 37615692bff8ff5ae1f2f6755072769b6791bc39 /tests.mjs | |
| parent | 400ddcde87ab1fae3249710b4a269a2cad86a128 (diff) | |
| download | chords-21664833f7ede94d812135e1b4ce88c241b5bf69.tar.gz chords-21664833f7ede94d812135e1b4ce88c241b5bf69.zip | |
add simple test stub
Diffstat (limited to 'tests.mjs')
| -rw-r--r-- | tests.mjs | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1,6 +1,12 @@ import TestHarness from './test-harness.mjs'; +import scaleTests from './scale-tests.mjs'; function init() { TestHarness.register(); + TestHarness.elements.forEach(e => { + e.addTests(scaleTests); + + e.run(); + }); } document.addEventListener('DOMContentLoaded', init); |
