@clawdtesting/puppeteer 1.0.4 → 1.0.5

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/client.d.ts CHANGED
@@ -15,7 +15,7 @@ export declare class ClawdTest {
15
15
  check(page: Page, testName: string, stepName: string): Promise<{
16
16
  sessionResult: import("./types").SessionResult;
17
17
  stepId: string;
18
- status: "passed" | "failed" | "new";
18
+ status: "match" | "unresolved" | "new";
19
19
  diffScore: number;
20
20
  isNew: boolean;
21
21
  diffImageUrl: string | null;
package/dist/types.d.ts CHANGED
@@ -20,7 +20,7 @@ export interface SessionOptions {
20
20
  }
21
21
  export interface StepResult {
22
22
  stepId: string;
23
- status: 'passed' | 'failed' | 'new';
23
+ status: 'match' | 'unresolved' | 'new';
24
24
  diffScore: number;
25
25
  isNew: boolean;
26
26
  diffImageUrl: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawdtesting/puppeteer",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Visual Testing SDK for Puppeteer",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/types.ts CHANGED
@@ -22,7 +22,7 @@ export interface SessionOptions {
22
22
 
23
23
  export interface StepResult {
24
24
  stepId: string;
25
- status: 'passed' | 'failed' | 'new';
25
+ status: 'match' | 'unresolved' | 'new';
26
26
  diffScore: number;
27
27
  isNew: boolean;
28
28
  diffImageUrl: string | null;