summaryrefslogtreecommitdiffstats
path: root/test-harness.mjs
diff options
context:
space:
mode:
authorBrian Cully <bjc@spork.org>2025-07-28 10:50:12 -0400
committerBrian Cully <bjc@spork.org>2025-07-28 10:50:12 -0400
commitba2a92120c56a5989f4f97b2d1450667ec16ad5e (patch)
treeaaee2bcc95187a42d0e7cd0921e22b3b5b05e2b7 /test-harness.mjs
parent21664833f7ede94d812135e1b4ce88c241b5bf69 (diff)
downloadchords-ba2a92120c56a5989f4f97b2d1450667ec16ad5e.tar.gz
chords-ba2a92120c56a5989f4f97b2d1450667ec16ad5e.zip
make tests run button force refresh
works in ff at least, and that's what i use
Diffstat (limited to 'test-harness.mjs')
-rw-r--r--test-harness.mjs6
1 files changed, 0 insertions, 6 deletions
diff --git a/test-harness.mjs b/test-harness.mjs
index 6990ad0..ec25a03 100644
--- a/test-harness.mjs
+++ b/test-harness.mjs
@@ -17,12 +17,6 @@ export default class extends HTMLElement {
const skippedCount = this.querySelector('.skipped-count');
[passedCount, failedCount, skippedCount].forEach(e => e.innerHTML = '0');
-
- const runLink = this.querySelector('a');
- runLink.onclick = e => {
- e.preventDefault();
- this.run();
- };
}
addTests(fn) {