From b9dbf1873d25c9db512caab1778ae41c2e199662 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 1 Jan 2023 16:37:39 +0000 Subject: [PATCH] node: do not truncate assertion errors --- node/test/test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/node/test/test.js b/node/test/test.js index 93b5839e3..3d6c93de9 100644 --- a/node/test/test.js +++ b/node/test/test.js @@ -11,6 +11,7 @@ import { mkdtempSync, statSync } from 'fs' import { tmpdir } from 'os' import { Context } from '../dist/context' chai.use(chaiAsPromised) +chai.config.truncateThreshold = 0; // Do not truncate assertion errors. async function createTempUser(url) { const fetch = require('node-fetch')