1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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);