summaryrefslogtreecommitdiff
path: root/tests/js/compat.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/js/compat.js')
-rw-r--r--tests/js/compat.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/js/compat.js b/tests/js/compat.js
new file mode 100644
index 0000000..8eaf4f3
--- /dev/null
+++ b/tests/js/compat.js
@@ -0,0 +1,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,
+];