@checksum-ai/runtime 1.2.1 → 1.2.3
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/.env +1 -1
- package/README.md +4 -1
- package/checksum-root/example.checksum.spec.ts +1 -1
- package/checksum-root/tsconfig.json +3 -2
- package/checksumlib.js +43 -43
- package/cli.js +1 -1
- package/index.js +179 -179
- package/mock-auto-heal-agent.js +32 -0
- package/package.json +1 -2
- package/pw-report-template.html +8 -8
- package/vtg-pw-bridge-runner.js +1 -1
package/.env
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
CHECKSUM_RUNTIME_BUILD_TIME=2025-08-
|
|
1
|
+
CHECKSUM_RUNTIME_BUILD_TIME=2025-08-16T18:20:56.376Z
|
package/README.md
CHANGED
|
@@ -131,8 +131,11 @@ Alongside standard test run configurations found in `playwright.config.ts`, use
|
|
|
131
131
|
/**
|
|
132
132
|
* Whether to use Checksum AI in order to
|
|
133
133
|
* recover from a failed action or assertion
|
|
134
|
+
* @actions - enable recovery from checksumAI steps
|
|
135
|
+
* @assertions - enable recovery from assertion steps
|
|
136
|
+
* @visualComparison - enable visual comparison recovery when using toHaveScreenshot assertions
|
|
134
137
|
*/
|
|
135
|
-
useChecksumAI: { actions: true, assertions: false },
|
|
138
|
+
useChecksumAI: { actions: true, assertions: false, visualComparison: false },
|
|
136
139
|
/**
|
|
137
140
|
* Whether to use recorded network responses when running your tests
|
|
138
141
|
*/
|