From 5e71b5a611d723577fbd8200823859826abed33c Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Wed, 11 Oct 2023 20:28:09 -0400 Subject: [PATCH] Replace `test.is` by `test.equal` Fixes: https://github.com/sourcemeta/alterschema/issues/165 Signed-off-by: Juan Cruz Viotti --- .gitignore | 1 + Makefile | 2 +- bindings/node/test.js | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9beb2fa..9e19508 100644 --- a/.gitignore +++ b/.gitignore @@ -112,3 +112,4 @@ _site .tmp .DS_Store dist +.tap diff --git a/Makefile b/Makefile index bdb4dda..cbac9e0 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ test: node_modules bindings/node/test.js $(NODE) ./$ 2020-12', (test) => { } }) - test.is(result.stderr.toString(), '') - test.is(result.status, 0) + test.equal(result.stderr.toString(), '') + test.equal(result.status, 0) test.end() })