@stablyai/playwright-test 2.1.9 → 2.1.11-rc.0
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 +4 -30
- package/dist/create-suite.mjs.map +1 -1
- package/dist/{index-D7GNnxbC.cjs → index-CFruORhJ.cjs} +2076 -1960
- package/dist/index-CFruORhJ.cjs.map +1 -0
- package/dist/{index-CzSSL_f7.mjs → index-DsxNMv2-.mjs} +2074 -1958
- package/dist/index-DsxNMv2-.mjs.map +1 -0
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/{index.d-Cbdkyfd5.d.cts → index.d-Cdd7-KS-.d.cts} +2 -7
- package/dist/{index.d-Cbdkyfd5.d.cts.map → index.d-Cdd7-KS-.d.cts.map} +1 -1
- package/dist/{index.d-Cbdkyfd5.d.mts → index.d-Cdd7-KS-.d.mts} +2 -7
- package/dist/{index.d-Cbdkyfd5.d.mts.map → index.d-Cdd7-KS-.d.mts.map} +1 -1
- package/dist/{index.d-Cbdkyfd5.d.ts → index.d-Cdd7-KS-.d.ts} +2 -7
- package/dist/{index.d-Cbdkyfd5.d.ts.map → index.d-Cdd7-KS-.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/index.mjs.map +1 -1
- 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 +3 -3
- package/dist/index-CzSSL_f7.mjs.map +0 -1
- package/dist/index-D7GNnxbC.cjs.map +0 -1
|
@@ -45532,8 +45532,6 @@ type ProjectNotificationConfig = {
|
|
|
45532
45532
|
type StablyReporterOptions = {
|
|
45533
45533
|
apiKey?: string;
|
|
45534
45534
|
projectId?: string;
|
|
45535
|
-
source?: string;
|
|
45536
|
-
cliVersion?: string;
|
|
45537
45535
|
notificationConfigs?: ProjectNotificationConfig[];
|
|
45538
45536
|
sensitiveValues?: readonly string[];
|
|
45539
45537
|
};
|
|
@@ -45541,8 +45539,6 @@ declare class StablyReporter implements Reporter {
|
|
|
45541
45539
|
private readonly wsClient;
|
|
45542
45540
|
private readonly apiKey;
|
|
45543
45541
|
private readonly projectId;
|
|
45544
|
-
private readonly source?;
|
|
45545
|
-
private readonly cliVersion?;
|
|
45546
45542
|
private readonly pendingOperations;
|
|
45547
45543
|
private readonly pendingUploads;
|
|
45548
45544
|
private testSuiteRunId;
|
|
@@ -45562,9 +45558,8 @@ declare class StablyReporter implements Reporter {
|
|
|
45562
45558
|
private suite?;
|
|
45563
45559
|
private pendingQueuedSpecs?;
|
|
45564
45560
|
private readonly attachmentFiles;
|
|
45565
|
-
private readonly
|
|
45561
|
+
private readonly pendingUploadUrlRequests;
|
|
45566
45562
|
constructor(options?: StablyReporterOptions);
|
|
45567
|
-
private handleUploadUrlsMessage;
|
|
45568
45563
|
onBegin(config: FullConfig, suite: Suite): void;
|
|
45569
45564
|
getSuiteRunId(config: FullConfig<{}, {}>): string;
|
|
45570
45565
|
onTestBegin(test: TestCase, result: TestResult): void;
|
|
@@ -45591,4 +45586,4 @@ declare function stablyReporter(options?: StablyReporterOptions): [string, any];
|
|
|
45591
45586
|
|
|
45592
45587
|
export { StablyReporter as d, stablyReporter as s };
|
|
45593
45588
|
export type { NotificationResultPolicy as N, ProjectNotificationConfig as P, StablyNotificationConfig as S, StablyEmailNotificationConfig as a, StablyReporterOptions as b, StablySlackNotificationConfig as c };
|
|
45594
|
-
//# sourceMappingURL=index.d-
|
|
45589
|
+
//# sourceMappingURL=index.d-Cdd7-KS-.d.mts.map
|