@jsenv/core 27.2.0 → 27.2.1
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/main.js
CHANGED
|
@@ -26022,20 +26022,23 @@ const evalException = (exceptionSource, {
|
|
|
26022
26022
|
|
|
26023
26023
|
const chromium = createRuntimeFromPlaywright({
|
|
26024
26024
|
browserName: "chromium",
|
|
26025
|
-
browserVersion: "
|
|
26025
|
+
browserVersion: "104.0.5112.20",
|
|
26026
|
+
// to update, check https://github.com/microsoft/playwright/releases
|
|
26026
26027
|
coveragePlaywrightAPIAvailable: true
|
|
26027
26028
|
});
|
|
26028
26029
|
const chromiumIsolatedTab = chromium.isolatedTab;
|
|
26029
26030
|
|
|
26030
26031
|
const firefox = createRuntimeFromPlaywright({
|
|
26031
26032
|
browserName: "firefox",
|
|
26032
|
-
browserVersion: "
|
|
26033
|
+
browserVersion: "100.0.2" // to update, check https://github.com/microsoft/playwright/releases
|
|
26034
|
+
|
|
26033
26035
|
});
|
|
26034
26036
|
const firefoxIsolatedTab = firefox.isolatedTab;
|
|
26035
26037
|
|
|
26036
26038
|
const webkit = createRuntimeFromPlaywright({
|
|
26037
26039
|
browserName: "webkit",
|
|
26038
26040
|
browserVersion: "15.4",
|
|
26041
|
+
// to update, check https://github.com/microsoft/playwright/releases
|
|
26039
26042
|
ignoreErrorHook: error => {
|
|
26040
26043
|
// we catch error during execution but safari throw unhandled rejection
|
|
26041
26044
|
// in a non-deterministic way.
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@ import { createRuntimeFromPlaywright } from "./from_playwright.js"
|
|
|
2
2
|
|
|
3
3
|
export const chromium = createRuntimeFromPlaywright({
|
|
4
4
|
browserName: "chromium",
|
|
5
|
-
browserVersion: "
|
|
5
|
+
browserVersion: "104.0.5112.20", // to update, check https://github.com/microsoft/playwright/releases
|
|
6
6
|
coveragePlaywrightAPIAvailable: true,
|
|
7
7
|
})
|
|
8
8
|
export const chromiumIsolatedTab = chromium.isolatedTab
|
|
@@ -2,6 +2,6 @@ import { createRuntimeFromPlaywright } from "./from_playwright.js"
|
|
|
2
2
|
|
|
3
3
|
export const firefox = createRuntimeFromPlaywright({
|
|
4
4
|
browserName: "firefox",
|
|
5
|
-
browserVersion: "
|
|
5
|
+
browserVersion: "100.0.2", // to update, check https://github.com/microsoft/playwright/releases
|
|
6
6
|
})
|
|
7
7
|
export const firefoxIsolatedTab = firefox.isolatedTab
|
|
@@ -2,7 +2,7 @@ import { createRuntimeFromPlaywright } from "./from_playwright.js"
|
|
|
2
2
|
|
|
3
3
|
export const webkit = createRuntimeFromPlaywright({
|
|
4
4
|
browserName: "webkit",
|
|
5
|
-
browserVersion: "15.4",
|
|
5
|
+
browserVersion: "15.4", // to update, check https://github.com/microsoft/playwright/releases
|
|
6
6
|
ignoreErrorHook: (error) => {
|
|
7
7
|
// we catch error during execution but safari throw unhandled rejection
|
|
8
8
|
// in a non-deterministic way.
|