@browsermation/test 0.0.6 → 0.0.7

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.
@@ -1,3 +0,0 @@
1
- export declare function getConfigViaTypescript(folder: string): Promise<unknown>;
2
- export declare function getConfig(projectPath: string): Promise<unknown>;
3
- export declare function getUniqueFilesFromJson(data: any, key?: string): any[];
package/dist/test.d.ts DELETED
@@ -1 +0,0 @@
1
- export declare const test: import("@playwright/test").TestType<import("@playwright/test").PlaywrightTestArgs & import("@playwright/test").PlaywrightTestOptions, import("@playwright/test").PlaywrightWorkerArgs & import("@playwright/test").PlaywrightWorkerOptions>;
package/dist/tunnel.d.ts DELETED
@@ -1,5 +0,0 @@
1
- import { spawn } from 'node:child_process';
2
- export declare function startTunnel(tunnelProcess: ReturnType<typeof spawn> | null, options: any): Promise<{
3
- tunnelProcess: import("child_process").ChildProcess;
4
- tunnelUrl: string;
5
- }>;
package/dist/zip.d.ts DELETED
@@ -1,6 +0,0 @@
1
- /**
2
- * Zips a folder to a Buffer. it keeps the folder structure intact.
3
- * @param folder the folder where the testFiles are located
4
- * @param testFiles Array of file paths to include in the zip.
5
- */
6
- export declare function zipFolderToBuffer(folder: string, testFiles: string[]): Promise<Buffer>;