summaryrefslogtreecommitdiff
path: root/tests/js/db.js
blob: c99dd1b694a18992f32c94e9556d2657f2c40114 (plain) (blame)
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);