@trackunit/iris-app-e2e 1.6.7 → 1.6.10
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/index.cjs.js +2 -0
- package/index.esm.js +2 -0
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -432,6 +432,8 @@ const defaultCypressConfig = optionsOrDirname => {
|
|
|
432
432
|
pageLoadTimeout: behaviorConfig.pageLoadTimeout ?? 35000,
|
|
433
433
|
// setting to undefined makes no effect on the baseUrl so child projects can override it
|
|
434
434
|
baseUrl: process.env.NX_FEATURE_BRANCH_BASE_URL ?? undefined,
|
|
435
|
+
// This avoid issues with SRI hashes changing
|
|
436
|
+
modifyObstructiveCode: false,
|
|
435
437
|
requestTimeout: behaviorConfig.requestTimeout ?? 25000,
|
|
436
438
|
responseTimeout: behaviorConfig.responseTimeout ?? 150000,
|
|
437
439
|
retries: behaviorConfig.retries ?? {
|
package/index.esm.js
CHANGED
|
@@ -412,6 +412,8 @@ const defaultCypressConfig = optionsOrDirname => {
|
|
|
412
412
|
pageLoadTimeout: behaviorConfig.pageLoadTimeout ?? 35000,
|
|
413
413
|
// setting to undefined makes no effect on the baseUrl so child projects can override it
|
|
414
414
|
baseUrl: process.env.NX_FEATURE_BRANCH_BASE_URL ?? undefined,
|
|
415
|
+
// This avoid issues with SRI hashes changing
|
|
416
|
+
modifyObstructiveCode: false,
|
|
415
417
|
requestTimeout: behaviorConfig.requestTimeout ?? 25000,
|
|
416
418
|
responseTimeout: behaviorConfig.responseTimeout ?? 150000,
|
|
417
419
|
retries: behaviorConfig.retries ?? {
|