@browsermation/test 0.0.55 → 0.0.61
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 -6
- package/dist/index.js +21 -30
- package/package.json +2 -14
- package/dist/bin/cli.d.ts +0 -2
- package/dist/bin/cli.js +0 -46925
- package/dist/core.d.ts +0 -8
- package/dist/esbuild.d.ts +0 -1
- package/dist/http.d.ts +0 -1
- package/dist/playwright.d.ts +0 -3
- package/dist/zip.d.ts +0 -6
package/dist/core.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { Readable } from 'node:stream';
|
|
2
|
-
/**
|
|
3
|
-
* The main function that orchestrates zipping and uploading.
|
|
4
|
-
* @param folderPath The path to the folder to process.
|
|
5
|
-
* @param testFiles The list of test files to include in the upload.
|
|
6
|
-
*/
|
|
7
|
-
export declare function zip(folder: string, testFiles: string[]): Promise<Buffer>;
|
|
8
|
-
export declare function upload(zipBuffer: Buffer, shardNumber: number, totalShards: number, playwrightConfig: object, options: object, eventStream: Readable): Promise<void>;
|
package/dist/esbuild.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function compileFileUsingEsbuild(folder: string, filepath: string): Promise<unknown>;
|
package/dist/http.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function downloadFile(fileUrl: string, outputLocationPath: string): Promise<unknown>;
|
package/dist/playwright.d.ts
DELETED
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>;
|