@nsshunt/ststestrunner 1.1.107 → 1.1.108
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/dist/ststestrunner.cjs +3 -1
- package/dist/ststestrunner.cjs.map +1 -1
- package/dist/ststestrunner.mjs +3 -1
- package/dist/ststestrunner.mjs.map +1 -1
- package/package.json +1 -1
- package/types/commonTypes.d.ts +1 -0
- package/types/commonTypes.d.ts.map +1 -1
- package/types/libmodule/testCaseFhirBase.d.ts.map +1 -1
package/dist/ststestrunner.cjs
CHANGED
|
@@ -607,7 +607,9 @@ var TestCaseFhirBase = class {
|
|
|
607
607
|
return true;
|
|
608
608
|
};
|
|
609
609
|
_GetDetail = () => {
|
|
610
|
-
|
|
610
|
+
const { runPrefix, testType, description } = this.runner.options;
|
|
611
|
+
const { workerManagerId, iteration } = this.runner;
|
|
612
|
+
return `runPrefix: [${runPrefix}], testType: [${testType}], description: [${description}], workerManagerId: [${workerManagerId}], Iteration: [${iteration}]`;
|
|
611
613
|
};
|
|
612
614
|
_CheckOutputLongDurationError = (snapshotStart, message) => {
|
|
613
615
|
const snapShotEnd = performance.now();
|