@bluecopa/harness 0.1.0-snapshot.114 → 0.1.0-snapshot.115

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.
@@ -1408,7 +1408,9 @@ var EpisodeCompressor = class {
1408
1408
 
1409
1409
  // src/arc/process-validator.ts
1410
1410
  function includesPathMatch(values, expected) {
1411
- return values.some((value) => value === expected || value.endsWith(`/${expected}`));
1411
+ return values.some(
1412
+ (value) => value === expected || value.endsWith(`/${expected}`) || expected.endsWith(`/${value}`)
1413
+ );
1412
1414
  }
1413
1415
  function matchingCommands(commandResults, expected) {
1414
1416
  const normalized = expected.trim().toLowerCase();