@sprucelabs/test-utils 5.1.427 → 5.1.428
Sign up to get free protection for your applications and to get access to all the features.
package/build/AssertionError.js
CHANGED
@@ -8,7 +8,7 @@ class AssertionError extends Error {
|
|
8
8
|
constructor(message, stack) {
|
9
9
|
var _a;
|
10
10
|
super(message);
|
11
|
-
this.message =
|
11
|
+
this.message = message;
|
12
12
|
this.stack = StackCleaner_1.default.clean(`${this.message}${((_a = stack !== null && stack !== void 0 ? stack : this.stack) !== null && _a !== void 0 ? _a : '').replace(message, '')}`);
|
13
13
|
}
|
14
14
|
}
|
@@ -3,7 +3,7 @@ export default class AssertionError extends Error {
|
|
3
3
|
constructor(message, stack) {
|
4
4
|
var _a;
|
5
5
|
super(message);
|
6
|
-
this.message =
|
6
|
+
this.message = message;
|
7
7
|
this.stack = StackCleaner.clean(`${this.message}${((_a = stack !== null && stack !== void 0 ? stack : this.stack) !== null && _a !== void 0 ? _a : '').replace(message, '')}`);
|
8
8
|
}
|
9
9
|
}
|