We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a9b158d + f78a26e commit 3b91a3bCopy full SHA for 3b91a3b
src/assertions.ts
@@ -2,6 +2,9 @@
2
import chai from "chai";
3
const assert = chai.assert;
4
5
+// Disable truncating actual and expected in assertion errors.
6
+chai.config.truncateThreshold = 0;
7
+
8
export const pass = () => {};
9
export const fail = assert.fail;
10
export const expect = assert;
0 commit comments