diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/js/db.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/js/db.js b/tests/js/db.js new file mode 100644 index 0000000..3a42b1f --- /dev/null +++ b/tests/js/db.js @@ -0,0 +1,16 @@ +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); |