@bigbinary/neeto-playwright-commons 1.18.4 → 1.18.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/index.cjs.js +7 -1
- package/index.cjs.js.map +1 -1
- package/index.js +7 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -194670,6 +194670,9 @@ const definePlaywrightConfig = (overrides) => {
|
|
|
194670
194670
|
timezoneId: "Asia/Calcutta",
|
|
194671
194671
|
geolocation: { latitude: 18.553187, longitude: 73.948313 }, // BB Pune office
|
|
194672
194672
|
permissions: ["geolocation"],
|
|
194673
|
+
launchOptions: {
|
|
194674
|
+
args: ["--js-flags=--max-old-space-size=4096"],
|
|
194675
|
+
},
|
|
194673
194676
|
...useOverrides,
|
|
194674
194677
|
},
|
|
194675
194678
|
projects: useCustomProjects
|
|
@@ -194682,7 +194685,10 @@ const definePlaywrightConfig = (overrides) => {
|
|
|
194682
194685
|
},
|
|
194683
194686
|
{
|
|
194684
194687
|
name: "chromium",
|
|
194685
|
-
use: {
|
|
194688
|
+
use: {
|
|
194689
|
+
...test$1.devices["Desktop Chrome"],
|
|
194690
|
+
storageState: STORAGE_STATE,
|
|
194691
|
+
},
|
|
194686
194692
|
dependencies: ["setup"],
|
|
194687
194693
|
},
|
|
194688
194694
|
{ name: "cleanup credentials", testMatch: "global.teardown.ts" },
|