summaryrefslogtreecommitdiff
path: root/tests/js/db.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/js/db.mjs')
-rw-r--r--tests/js/db.mjs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/js/db.mjs b/tests/js/db.mjs
new file mode 100644
index 0000000..e4a8a51
--- /dev/null
+++ b/tests/js/db.mjs
@@ -0,0 +1,15 @@
+import { runTests } from "../runner.mjs";
+import { init } from "../../src/db.mjs";
+
+
+const test_init = t => {
+ t.start("init()");
+ t.test("FIXME", () => {
+ // init();
+ });
+};
+
+
+await runTests([
+ test_init,
+]);