@nsshunt/ststestrunner 1.0.62 → 1.0.63
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.mjs +25 -1
- package/dist/ststestrunner.mjs.map +1 -1
- package/dist/ststestrunner.umd.js +25 -1
- package/dist/ststestrunner.umd.js.map +1 -1
- package/package.json +1 -1
- package/types/testCaseFhir01.d.ts.map +1 -1
- package/types/testCaseFhir02.d.ts.map +1 -1
- package/types/testCaseFhir03.d.ts.map +1 -1
- package/types/testCaseFhir04.d.ts.map +1 -1
- package/types/testCaseFhir05.d.ts.map +1 -1
- package/types/testCaseFhir06.d.ts.map +1 -1
- package/types/testCaseFhir09.d.ts.map +1 -1
- package/types/testCaseFhirBase.d.ts +2 -0
- package/types/testCaseFhirBase.d.ts.map +1 -1
- package/types/testCaseFhirQueryBase.d.ts.map +1 -1
package/dist/ststestrunner.mjs
CHANGED
|
@@ -12592,7 +12592,7 @@ class TestCaseFhirBase {
|
|
|
12592
12592
|
constructor(workerInstance, runner) {
|
|
12593
12593
|
__privateAdd(this, _options4);
|
|
12594
12594
|
//#authUtilsNode: AuthUtilsNode;
|
|
12595
|
-
__privateAdd(this, _agentManager
|
|
12595
|
+
__privateAdd(this, _agentManager);
|
|
12596
12596
|
__privateAdd(this, _randomDataRecordset, []);
|
|
12597
12597
|
__privateAdd(this, _runner2);
|
|
12598
12598
|
__privateAdd(this, _workerInstance2);
|
|
@@ -12968,6 +12968,9 @@ class TestCaseFhirBase {
|
|
|
12968
12968
|
*/
|
|
12969
12969
|
}));
|
|
12970
12970
|
}
|
|
12971
|
+
get agentManager() {
|
|
12972
|
+
return __privateGet(this, _agentManager);
|
|
12973
|
+
}
|
|
12971
12974
|
get accesssToken() {
|
|
12972
12975
|
return __privateGet(this, _accesssToken);
|
|
12973
12976
|
}
|
|
@@ -13259,6 +13262,9 @@ class TestCaseFhir01 extends TestCaseFhirBase {
|
|
|
13259
13262
|
await this.PublishTelemetry();
|
|
13260
13263
|
return true;
|
|
13261
13264
|
});
|
|
13265
|
+
if (this.agentManager) {
|
|
13266
|
+
this.agentManager.agentResetCount = runner.options.agentResetMod;
|
|
13267
|
+
}
|
|
13262
13268
|
}
|
|
13263
13269
|
}
|
|
13264
13270
|
class TestCaseFhir02 extends TestCaseFhirBase {
|
|
@@ -13297,6 +13303,9 @@ class TestCaseFhir02 extends TestCaseFhirBase {
|
|
|
13297
13303
|
await this.PublishTelemetry();
|
|
13298
13304
|
return true;
|
|
13299
13305
|
});
|
|
13306
|
+
if (this.agentManager) {
|
|
13307
|
+
this.agentManager.agentResetCount = runner.options.agentResetMod;
|
|
13308
|
+
}
|
|
13300
13309
|
}
|
|
13301
13310
|
}
|
|
13302
13311
|
class TestCaseFhir03 extends TestCaseFhirBase {
|
|
@@ -13337,6 +13346,9 @@ class TestCaseFhir03 extends TestCaseFhirBase {
|
|
|
13337
13346
|
await this.PublishTelemetry();
|
|
13338
13347
|
return true;
|
|
13339
13348
|
});
|
|
13349
|
+
if (this.agentManager) {
|
|
13350
|
+
this.agentManager.agentResetCount = runner.options.agentResetMod;
|
|
13351
|
+
}
|
|
13340
13352
|
}
|
|
13341
13353
|
}
|
|
13342
13354
|
class TestCaseFhir04 extends TestCaseFhirBase {
|
|
@@ -13392,6 +13404,9 @@ class TestCaseFhir04 extends TestCaseFhirBase {
|
|
|
13392
13404
|
await this.PublishTelemetry();
|
|
13393
13405
|
return true;
|
|
13394
13406
|
});
|
|
13407
|
+
if (this.agentManager) {
|
|
13408
|
+
this.agentManager.agentResetCount = runner.options.agentResetMod;
|
|
13409
|
+
}
|
|
13395
13410
|
}
|
|
13396
13411
|
}
|
|
13397
13412
|
class TestCaseFhir05 extends TestCaseFhirBase {
|
|
@@ -13437,6 +13452,9 @@ class TestCaseFhir05 extends TestCaseFhirBase {
|
|
|
13437
13452
|
await this.PublishTelemetry();
|
|
13438
13453
|
return true;
|
|
13439
13454
|
});
|
|
13455
|
+
if (this.agentManager) {
|
|
13456
|
+
this.agentManager.agentResetCount = runner.options.agentResetMod;
|
|
13457
|
+
}
|
|
13440
13458
|
}
|
|
13441
13459
|
}
|
|
13442
13460
|
class TestCaseFhirQueryBase extends TestCaseFhirBase {
|
|
@@ -13469,6 +13487,9 @@ class TestCaseFhirQueryBase extends TestCaseFhirBase {
|
|
|
13469
13487
|
await this.PublishTelemetry();
|
|
13470
13488
|
return true;
|
|
13471
13489
|
});
|
|
13490
|
+
if (this.agentManager) {
|
|
13491
|
+
this.agentManager.agentResetCount = runner.options.agentResetMod;
|
|
13492
|
+
}
|
|
13472
13493
|
}
|
|
13473
13494
|
}
|
|
13474
13495
|
class TestCaseFhir06 extends TestCaseFhirQueryBase {
|
|
@@ -13562,6 +13583,9 @@ class TestCaseFhir09 extends TestCaseFhirBase {
|
|
|
13562
13583
|
await this.PublishTelemetry();
|
|
13563
13584
|
return true;
|
|
13564
13585
|
});
|
|
13586
|
+
if (this.agentManager) {
|
|
13587
|
+
this.agentManager.agentResetCount = runner.options.agentResetMod;
|
|
13588
|
+
}
|
|
13565
13589
|
}
|
|
13566
13590
|
}
|
|
13567
13591
|
class StartUpDelFhirResources extends TestCaseFhirBase {
|