From b2b5ba67c25705ddabb7f59baf725604eaf67c04 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Thu, 16 Nov 2023 15:48:12 -0300 Subject: Add WIP non-async functions to napi-sqlite.c --- tests/js/db.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/js/db.js (limited to 'tests/js') 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); -- cgit v1.2.3