@checksum-ai/runtime 4.12.0 → 4.13.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/.env +1 -1
- package/checksum-progress-reporter.js +2 -2
- package/checksum-root/tsconfig.json +0 -1
- package/checksumlib.js +7 -7
- package/cli.js +164 -744
- package/helpers.ts +1 -1
- package/index.d.ts +6 -2
- package/index.js +124 -743
- package/package.json +13 -10
- package/pw-report-template.html +1 -1
- package/test-run-monitor.js +7 -486
- package/index.d.helpers.ts +0 -14
package/helpers.ts
CHANGED
package/index.d.ts
CHANGED
|
@@ -427,9 +427,13 @@ interface DefineChecksumIdMethod {
|
|
|
427
427
|
/**
|
|
428
428
|
* Initialize Checksum runtime
|
|
429
429
|
*
|
|
430
|
-
* @param base
|
|
430
|
+
* @param base Optional Playwright test object to extend
|
|
431
|
+
* @param config Optional checksum config (defaults to loading checksum.config.ts)
|
|
431
432
|
*/
|
|
432
|
-
export function init(
|
|
433
|
+
export function init(
|
|
434
|
+
base?: ChecksumTestType<PlaywrightTestArgs>,
|
|
435
|
+
config?: ChecksumConfig
|
|
436
|
+
): {
|
|
433
437
|
test: ChecksumTestType<ChecksumPlaywrightTestArgs>;
|
|
434
438
|
login: ReturnType<typeof getLogin>;
|
|
435
439
|
defineChecksumTest: DefineChecksumIdMethod;
|