@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.
@@ -9,7 +9,7 @@ import {
9
9
  TestRunner,
10
10
  TestSkip,
11
11
  test
12
- } from "./chunk-HMQKVFIP.js";
12
+ } from "./chunk-TPV4JEMM.js";
13
13
  import "./chunk-OYMWB5SX.js";
14
14
  export {
15
15
  AssertTest,
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 ?? false) {
8651
+ if (options?.removeNonProjectPaths ?? true) {
8652
8652
  result = _BasicTestError.removeNonProjectPaths(result, currentFolderPath);
8653
8653
  }
8654
- if (options?.relativeFilePaths ?? false) {
8654
+ if (options?.relativeFilePaths ?? true) {
8655
8655
  result = _BasicTestError.makeFilePathsRelative(result, currentFolderPath);
8656
8656
  }
8657
8657
  return result;