summaryrefslogtreecommitdiff
path: root/tests/js/db.js
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-02-23 06:05:19 -0300
committerEuAndreh <eu@euandre.org>2024-02-23 06:05:21 -0300
commitc36bf8e3577da31cf6d575879c7e92d3e9c7e4f1 (patch)
tree4fd5414e76490e297c4c770ff35e09149ef3658f /tests/js/db.js
parentRemove C code and cleanup repository (diff)
downloadpapod-c36bf8e3577da31cf6d575879c7e92d3e9c7e4f1.tar.gz
papod-c36bf8e3577da31cf6d575879c7e92d3e9c7e4f1.tar.xz
Big cleanup
- delete all SQLite Node-API code: we'll use the C++ one instead; - implement hero.mjs, with tests! - use ESM all over.
Diffstat (limited to 'tests/js/db.js')
-rw-r--r--tests/js/db.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/js/db.js b/tests/js/db.js
deleted file mode 100644
index c99dd1b..0000000
--- a/tests/js/db.js
+++ /dev/null
@@ -1,16 +0,0 @@
-const { runTests } = require("../runner.js");
-const { init } = require("../../src/db.js");
-
-
-const test_init = t => {
- t.start("init()");
- t.test("FIXME", () => {
- // init();
- });
-};
-
-const tests = [
- test_init,
-];
-
-runTests(tests);