From 217905ac31a6b4113778afc4231ae591f7a626f2 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 5 Aug 2022 01:16:33 +0000 Subject: [PATCH] [TS] Include substantially larger backtrace in testing --- genbindings.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/genbindings.sh b/genbindings.sh index 8034337d..ce69c846 100755 --- a/genbindings.sh +++ b/genbindings.sh @@ -233,9 +233,9 @@ else NODE_V="$(node --version)" if [ "${NODE_V:1:2}" -gt 14 ]; then cd ../ts - node test/node.mjs + node --stack_trace_limit=200 --trace-uncaught test/node.mjs cd ../node-net - node test/test.mjs + node --stack_trace_limit=200 --trace-uncaught test/test.mjs fi fi fi -- 2.30.2