@stablyai/playwright-test 2.1.7 → 2.1.9
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/create-suite.cjs.map +1 -1
- package/dist/create-suite.mjs +30 -4
- package/dist/create-suite.mjs.map +1 -1
- package/dist/{index-CyV-2Mfg.mjs → index-CzSSL_f7.mjs} +2059 -2162
- package/dist/index-CzSSL_f7.mjs.map +1 -0
- package/dist/{index-CfBVZ27r.cjs → index-D7GNnxbC.cjs} +2061 -2164
- package/dist/index-D7GNnxbC.cjs.map +1 -0
- package/dist/index.cjs +5 -5
- package/dist/{index.d-BYzcguUj.d.cts → index.d-Cbdkyfd5.d.cts} +9 -2
- package/dist/{index.d-BYzcguUj.d.cts.map → index.d-Cbdkyfd5.d.cts.map} +1 -1
- package/dist/{index.d-BYzcguUj.d.ts → index.d-Cbdkyfd5.d.mts} +9 -2
- package/dist/{index.d-BYzcguUj.d.mts.map → index.d-Cbdkyfd5.d.mts.map} +1 -1
- package/dist/{index.d-BYzcguUj.d.mts → index.d-Cbdkyfd5.d.ts} +9 -2
- package/dist/{index.d-BYzcguUj.d.ts.map → index.d-Cbdkyfd5.d.ts.map} +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +2 -2
- package/dist/reporter.cjs +2 -2
- package/dist/reporter.d.cts +1 -1
- package/dist/reporter.d.mts +1 -1
- package/dist/reporter.mjs +2 -2
- package/package.json +4 -4
- package/dist/index-CfBVZ27r.cjs.map +0 -1
- package/dist/index-CyV-2Mfg.mjs.map +0 -1
|
@@ -45532,6 +45532,8 @@ type ProjectNotificationConfig = {
|
|
|
45532
45532
|
type StablyReporterOptions = {
|
|
45533
45533
|
apiKey?: string;
|
|
45534
45534
|
projectId?: string;
|
|
45535
|
+
source?: string;
|
|
45536
|
+
cliVersion?: string;
|
|
45535
45537
|
notificationConfigs?: ProjectNotificationConfig[];
|
|
45536
45538
|
sensitiveValues?: readonly string[];
|
|
45537
45539
|
};
|
|
@@ -45539,6 +45541,8 @@ declare class StablyReporter implements Reporter {
|
|
|
45539
45541
|
private readonly wsClient;
|
|
45540
45542
|
private readonly apiKey;
|
|
45541
45543
|
private readonly projectId;
|
|
45544
|
+
private readonly source?;
|
|
45545
|
+
private readonly cliVersion?;
|
|
45542
45546
|
private readonly pendingOperations;
|
|
45543
45547
|
private readonly pendingUploads;
|
|
45544
45548
|
private testSuiteRunId;
|
|
@@ -45554,10 +45558,13 @@ declare class StablyReporter implements Reporter {
|
|
|
45554
45558
|
private readonly sensitiveValues?;
|
|
45555
45559
|
private filteredNotificationConfigs?;
|
|
45556
45560
|
private readonly testIdMap;
|
|
45561
|
+
private readonly completedTestIds;
|
|
45562
|
+
private suite?;
|
|
45557
45563
|
private pendingQueuedSpecs?;
|
|
45558
45564
|
private readonly attachmentFiles;
|
|
45559
|
-
private readonly
|
|
45565
|
+
private readonly uploadUrlWaitQueue;
|
|
45560
45566
|
constructor(options?: StablyReporterOptions);
|
|
45567
|
+
private handleUploadUrlsMessage;
|
|
45561
45568
|
onBegin(config: FullConfig, suite: Suite): void;
|
|
45562
45569
|
getSuiteRunId(config: FullConfig<{}, {}>): string;
|
|
45563
45570
|
onTestBegin(test: TestCase, result: TestResult): void;
|
|
@@ -45584,4 +45591,4 @@ declare function stablyReporter(options?: StablyReporterOptions): [string, any];
|
|
|
45584
45591
|
|
|
45585
45592
|
export { StablyReporter as d, stablyReporter as s };
|
|
45586
45593
|
export type { NotificationResultPolicy as N, ProjectNotificationConfig as P, StablyNotificationConfig as S, StablyEmailNotificationConfig as a, StablyReporterOptions as b, StablySlackNotificationConfig as c };
|
|
45587
|
-
//# sourceMappingURL=index.d-
|
|
45594
|
+
//# sourceMappingURL=index.d-Cbdkyfd5.d.ts.map
|