@pygmalionjs/pygmalion 0.6.8 → 0.6.10
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-lib/testing.js
CHANGED
|
@@ -437,6 +437,8 @@ export interface DesignImportController {
|
|
|
437
437
|
minElementCount?: number;
|
|
438
438
|
}): Promise<DomImportResult | null>;
|
|
439
439
|
runScreenInteractions(iframe: HTMLIFrameElement, interactions: readonly DesignScreenInteraction[]): Promise<DesignScreenInteractionReport>;
|
|
440
|
+
/** Reproduces and verifies state without waiting for capture-only stability. */
|
|
441
|
+
prepareScreenState?(iframe: HTMLIFrameElement, spec: DesignScreenCaptureSpec): Promise<DesignScreenCaptureReport>;
|
|
440
442
|
prepareScreenCapture(iframe: HTMLIFrameElement, spec: DesignScreenCaptureSpec): Promise<DesignScreenCaptureReport>;
|
|
441
443
|
}
|
|
442
444
|
/**
|