@checksum-ai/runtime 1.0.48 → 1.0.49

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.
@@ -12,7 +12,7 @@ require("dotenv").config();
12
12
  export default defineConfig({
13
13
  testDir: "..",
14
14
  /* Set test timeout to 10 minutes (relatively long) as Checksum implements its own timeout mechanism */
15
- timeout: 1000 * 50 * 10,
15
+ timeout: 1000 * 60 * 10,
16
16
  /* Run tests in files in parallel */
17
17
  fullyParallel: false,
18
18
  /* Fail the build on CI if you accidentally left test.only in the source code. */
@@ -37,7 +37,9 @@ export default defineConfig({
37
37
  locale: "en-US",
38
38
  timezoneId: "America/Los_Angeles",
39
39
  permissions: ["clipboard-read"],
40
- actionTimeout: 1000 * 5, // set action timeout for 5 seconds. In case an aciton times out, checksum's selectors will kick in.
40
+ actionTimeout: 1000 * 5, // set action timeout for 5 seconds. When an action times out, checksum's Autonomus Agent kicks in and attempts to fix the test.
41
+ navigationTimeout: 1000 * 30,
42
+
41
43
  },
42
44
  expect: {
43
45
  toHaveScreenshot: { maxDiffPixelRatio: 0.05, maxDiffPixels: 200 },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checksum-ai/runtime",
3
- "version": "1.0.48",
3
+ "version": "1.0.49",
4
4
  "description": "Checksum.ai test runtime",
5
5
  "main": "index.js",
6
6
  "scripts": {