@stablyai/playwright-test 2.1.12 → 2.1.14
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/{index-EhzPL0ML.cjs → index-CdLJi9uc.cjs} +855 -820
- package/dist/index-CdLJi9uc.cjs.map +1 -0
- package/dist/{index-cF7EDVHb.mjs → index-D8lS6VkX.mjs} +851 -816
- package/dist/index-D8lS6VkX.mjs.map +1 -0
- package/dist/index.cjs +5 -5
- package/dist/{index.d-Cbdkyfd5.d.cts → index.d-CBqVmz24.d.cts} +6 -1
- package/dist/{index.d-Cbdkyfd5.d.cts.map → index.d-CBqVmz24.d.cts.map} +1 -1
- package/dist/{index.d-Cbdkyfd5.d.ts → index.d-CBqVmz24.d.mts} +6 -1
- package/dist/{index.d-Cbdkyfd5.d.mts.map → index.d-CBqVmz24.d.mts.map} +1 -1
- package/dist/{index.d-Cbdkyfd5.d.mts → index.d-CBqVmz24.d.ts} +6 -1
- package/dist/{index.d-Cbdkyfd5.d.ts.map → index.d-CBqVmz24.d.ts.map} +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/reporter.cjs +1 -1
- package/dist/reporter.d.cts +1 -1
- package/dist/reporter.d.mts +1 -1
- package/dist/reporter.mjs +1 -1
- package/package.json +3 -3
- package/dist/index-EhzPL0ML.cjs.map +0 -1
- package/dist/index-cF7EDVHb.mjs.map +0 -1
|
@@ -45534,6 +45534,7 @@ type StablyReporterOptions = {
|
|
|
45534
45534
|
projectId?: string;
|
|
45535
45535
|
source?: string;
|
|
45536
45536
|
cliVersion?: string;
|
|
45537
|
+
suiteName?: string;
|
|
45537
45538
|
notificationConfigs?: ProjectNotificationConfig[];
|
|
45538
45539
|
sensitiveValues?: readonly string[];
|
|
45539
45540
|
};
|
|
@@ -45554,6 +45555,7 @@ declare class StablyReporter implements Reporter {
|
|
|
45554
45555
|
private isListMode;
|
|
45555
45556
|
private config?;
|
|
45556
45557
|
private readonly skipSuiteReporting;
|
|
45558
|
+
private readonly suiteName?;
|
|
45557
45559
|
private readonly notificationConfigs?;
|
|
45558
45560
|
private readonly sensitiveValues?;
|
|
45559
45561
|
private filteredNotificationConfigs?;
|
|
@@ -45563,6 +45565,7 @@ declare class StablyReporter implements Reporter {
|
|
|
45563
45565
|
private pendingQueuedSpecs?;
|
|
45564
45566
|
private readonly attachmentFiles;
|
|
45565
45567
|
private readonly uploadUrlWaitQueue;
|
|
45568
|
+
private readonly uploadUrlWaitLogState;
|
|
45566
45569
|
constructor(options?: StablyReporterOptions);
|
|
45567
45570
|
private handleUploadUrlsMessage;
|
|
45568
45571
|
onBegin(config: FullConfig, suite: Suite): void;
|
|
@@ -45585,10 +45588,12 @@ declare class StablyReporter implements Reporter {
|
|
|
45585
45588
|
private handleWebSocketError;
|
|
45586
45589
|
private handleWebSocketMessage;
|
|
45587
45590
|
private uploadAttachments;
|
|
45591
|
+
private startUploadUrlWaitLogging;
|
|
45592
|
+
private clearUploadUrlWaitLogging;
|
|
45588
45593
|
}
|
|
45589
45594
|
declare function stablyReporter(options?: StablyReporterOptions): [string, any];
|
|
45590
45595
|
//# sourceMappingURL=index.d.mts.map
|
|
45591
45596
|
|
|
45592
45597
|
export { StablyReporter as d, stablyReporter as s };
|
|
45593
45598
|
export type { NotificationResultPolicy as N, ProjectNotificationConfig as P, StablyNotificationConfig as S, StablyEmailNotificationConfig as a, StablyReporterOptions as b, StablySlackNotificationConfig as c };
|
|
45594
|
-
//# sourceMappingURL=index.d-
|
|
45599
|
+
//# sourceMappingURL=index.d-CBqVmz24.d.ts.map
|