summaryrefslogtreecommitdiff
path: root/tests/js/compat.js
blob: 8eaf4f3207e8c25372a6bab32fc3309436ac8b0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { getJSImpl } from "../../src/compat.js";

const test_getJSImpl = t => {
	t.start("getJSImpl()");
	// FIXME
};

const test_mappings = t => {
	t.start("mappings");
	// FIXME
};


export const tests = [
	test_getJSImpl,
	test_mappings,
];