summaryrefslogtreecommitdiff
path: root/tests/runner.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runner.js')
-rw-r--r--tests/runner.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/runner.js b/tests/runner.js
index ca0c183..4772a28 100644
--- a/tests/runner.js
+++ b/tests/runner.js
@@ -23,17 +23,6 @@ const t = {
throw e;
}
},
- assertEq: (expected, given, msg = "") => {
- if (!eq(expected, given)) {
- console.error("expected:", expected, "\ngiven: ", given);
- throw new AssertionError(`${red(msg)}`);
- }
- },
- assert: (x, msg = "") => {
- if (!x) {
- throw new AssertionError(`${red(msg)}`);
- }
- },
};
const runTests = async tests => {