summaryrefslogtreecommitdiffstats
path: root/tests.mjs
diff options
context:
space:
mode:
authorBrian Cully <bjc@spork.org>2025-07-28 10:18:58 -0400
committerBrian Cully <bjc@spork.org>2025-07-28 10:18:58 -0400
commit21664833f7ede94d812135e1b4ce88c241b5bf69 (patch)
tree37615692bff8ff5ae1f2f6755072769b6791bc39 /tests.mjs
parent400ddcde87ab1fae3249710b4a269a2cad86a128 (diff)
downloadchords-21664833f7ede94d812135e1b4ce88c241b5bf69.tar.gz
chords-21664833f7ede94d812135e1b4ce88c241b5bf69.zip
add simple test stub
Diffstat (limited to 'tests.mjs')
-rw-r--r--tests.mjs6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests.mjs b/tests.mjs
index a364e8e..fc3c57c 100644
--- a/tests.mjs
+++ b/tests.mjs
@@ -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);