testdriverai 6.0.31 → 6.0.32
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/agent/index.js +1 -2
- package/package.json +1 -1
package/agent/index.js
CHANGED
|
@@ -484,14 +484,13 @@ class TestDriverAgent extends EventEmitter2 {
|
|
|
484
484
|
sourcePosition: sourcePosition,
|
|
485
485
|
});
|
|
486
486
|
|
|
487
|
-
await this.haveAIResolveError(
|
|
487
|
+
return await this.haveAIResolveError(
|
|
488
488
|
error,
|
|
489
489
|
yaml.dump({ commands: [yml] }),
|
|
490
490
|
depth,
|
|
491
491
|
true,
|
|
492
492
|
shouldSave,
|
|
493
493
|
);
|
|
494
|
-
throw error;
|
|
495
494
|
}
|
|
496
495
|
}
|
|
497
496
|
|