@remotex-labs/xjet 1.4.0 → 1.5.1
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/bash.js +3 -3
- package/dist/bash.js.map +3 -3
- package/dist/index.d.ts +2 -1
- package/dist/index.js.map +1 -1
- package/dist/shared.js.map +1 -1
- package/package.json +85 -84
package/dist/index.d.ts
CHANGED
|
@@ -4702,11 +4702,12 @@ export interface TestRunnerInterface {
|
|
|
4702
4702
|
*
|
|
4703
4703
|
* @param suite - The compiled JavaScript test suite as a binary buffer.
|
|
4704
4704
|
* @param suiteId - A unique identifier for the test suite.
|
|
4705
|
+
* @param path - The test file path (relative to the project root).
|
|
4705
4706
|
* @returns A promise that resolves once the suite has been successfully dispatched.
|
|
4706
4707
|
*
|
|
4707
4708
|
* @since 1.0.0
|
|
4708
4709
|
*/
|
|
4709
|
-
dispatch(suite: Buffer, suiteId: string): Promise<void> | void;
|
|
4710
|
+
dispatch(suite: Buffer, suiteId: string, path: string): Promise<void> | void;
|
|
4710
4711
|
/**
|
|
4711
4712
|
* Establishes a communication channel with the runner to receive results.
|
|
4712
4713
|
*
|