summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-11-10 15:38:35 -0300
committerEuAndreh <eu@euandre.org>2023-11-10 15:38:35 -0300
commitec5776d1aff83985f9276a76a2896d2f1eb829f7 (patch)
tree8ef9aa7d7b7f68caf3d19ddf8e591757702a95c2
parentMakefile: Remove $(JSIMPL) variable (diff)
downloadpapod-ec5776d1aff83985f9276a76a2896d2f1eb829f7.tar.gz
papod-ec5776d1aff83985f9276a76a2896d2f1eb829f7.tar.xz
tests/js/compat.js: Remove unused file
-rw-r--r--Makefile1
-rw-r--r--tests/js/compat.js17
2 files changed, 0 insertions, 18 deletions
diff --git a/Makefile b/Makefile
index 8e0ef9d..2ca99c4 100644
--- a/Makefile
+++ b/Makefile
@@ -53,7 +53,6 @@ sources.js = \
src/utils.js \
tests.js = \
- tests/js/compat.js \
tests/js/utils.js \
diff --git a/tests/js/compat.js b/tests/js/compat.js
deleted file mode 100644
index 8eaf4f3..0000000
--- a/tests/js/compat.js
+++ /dev/null
@@ -1,17 +0,0 @@
-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,
-];