@everyonesoftware/common 9.0.0 → 10.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/outputs/{chunk-HMQKVFIP.js → chunk-TPV4JEMM.js} +3 -3
- package/outputs/chunk-TPV4JEMM.js.map +1 -0
- package/outputs/testIndex.cjs +2 -2
- package/outputs/testIndex.cjs.map +1 -1
- package/outputs/testIndex.js +1 -1
- package/outputs/tests.cjs +2 -2
- package/outputs/tests.cjs.map +1 -1
- package/outputs/tests.js +1 -1
- package/package.json +1 -1
- package/outputs/chunk-HMQKVFIP.js.map +0 -1
package/outputs/testIndex.js
CHANGED
package/outputs/tests.cjs
CHANGED
|
@@ -8648,10 +8648,10 @@ var BasicTestError = class _BasicTestError {
|
|
|
8648
8648
|
getErrorString(options) {
|
|
8649
8649
|
let result = this.error instanceof Error && this.error.stack ? this.error.stack : `${this.error}`;
|
|
8650
8650
|
const currentFolderPath = process.cwd();
|
|
8651
|
-
if (options?.removeNonProjectPaths ??
|
|
8651
|
+
if (options?.removeNonProjectPaths ?? true) {
|
|
8652
8652
|
result = _BasicTestError.removeNonProjectPaths(result, currentFolderPath);
|
|
8653
8653
|
}
|
|
8654
|
-
if (options?.relativeFilePaths ??
|
|
8654
|
+
if (options?.relativeFilePaths ?? true) {
|
|
8655
8655
|
result = _BasicTestError.makeFilePathsRelative(result, currentFolderPath);
|
|
8656
8656
|
}
|
|
8657
8657
|
return result;
|