summaryrefslogtreecommitdiffstats
path: root/tests.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'tests.mjs')
-rw-r--r--tests.mjs2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests.mjs b/tests.mjs
index fc3c57c..114ddf8 100644
--- a/tests.mjs
+++ b/tests.mjs
@@ -1,9 +1,11 @@
import TestHarness from './test-harness.mjs';
+import playerTests from './player-tests.mjs';
import scaleTests from './scale-tests.mjs';
function init() {
TestHarness.register();
TestHarness.elements.forEach(e => {
+ e.addTests(playerTests);
e.addTests(scaleTests);
e.run();