@nsshunt/stsrunnerframework 2.0.10 → 2.0.12
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/README.md +0 -3
- package/dist/index.cjs +384 -2073
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +375 -2063
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -8
- package/types/abstractRunnerExecutionWorker.d.ts.map +1 -1
- package/types/archiveManager.d.ts.map +1 -1
- package/types/messageBroker.d.ts.map +1 -1
- package/types/testing/mockedWorkerTestRunner01.d.ts.map +1 -1
- package/types/testing/testCase01.d.ts.map +1 -1
- package/types/testing/testCase02.d.ts.map +1 -1
- package/types/workerInstanceMannager.d.ts.map +1 -1
package/README.md
CHANGED
|
@@ -1097,8 +1097,6 @@ stateDiagram
|
|
|
1097
1097
|
import { IRunnerInstance, ITestRunnerTelemetryPayload, eIWMessageCommands, WorkerInstance } from './../index'
|
|
1098
1098
|
import { TestCase01 } from './testCase01'
|
|
1099
1099
|
|
|
1100
|
-
import isNode from 'detect-node'
|
|
1101
|
-
|
|
1102
1100
|
import { parentPort } from 'worker_threads';
|
|
1103
1101
|
|
|
1104
1102
|
export class WorkerTestCases extends WorkerInstance {
|
|
@@ -1186,7 +1184,6 @@ import { TestCase01 } from './testCase01'
|
|
|
1186
1184
|
|
|
1187
1185
|
import { MessagePort } from 'worker_threads';
|
|
1188
1186
|
|
|
1189
|
-
import isNode from 'detect-node'
|
|
1190
1187
|
import { JSONObject } from '@nsshunt/stsutils';
|
|
1191
1188
|
|
|
1192
1189
|
export class WorkerTestCases extends WorkerInstance {
|