From 70f72d8c6028d63d6366d55f849f3d94d0f24212 Mon Sep 17 00:00:00 2001 From: drklee3 Date: Fri, 11 Oct 2024 11:14:41 -0700 Subject: [PATCH] chore: Disable chai assertion error truncation Long errors are truncated and difficult to determine the issue otherwise --- tests/e2e-evm/hardhat.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/e2e-evm/hardhat.config.ts b/tests/e2e-evm/hardhat.config.ts index 10b776fb5..f5cc853c2 100644 --- a/tests/e2e-evm/hardhat.config.ts +++ b/tests/e2e-evm/hardhat.config.ts @@ -10,6 +10,7 @@ import "hardhat-ignore-warnings"; // Chai setup // chai.use(chaiAsPromised); +chai.config.truncateThreshold = 0; // // Load HRE extensions