@jsenv/core 30.0.0 → 30.0.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
|
@@ -24813,7 +24813,7 @@ const registerEvent = ({
|
|
|
24813
24813
|
|
|
24814
24814
|
const chromium = createRuntimeFromPlaywright({
|
|
24815
24815
|
browserName: "chromium",
|
|
24816
|
-
browserVersion: "
|
|
24816
|
+
browserVersion: "109.0.5414.46",
|
|
24817
24817
|
// to update, check https://github.com/microsoft/playwright/releases
|
|
24818
24818
|
coveragePlaywrightAPIAvailable: true
|
|
24819
24819
|
});
|
|
@@ -24821,7 +24821,7 @@ const chromiumIsolatedTab = chromium.isolatedTab;
|
|
|
24821
24821
|
|
|
24822
24822
|
const firefox = createRuntimeFromPlaywright({
|
|
24823
24823
|
browserName: "firefox",
|
|
24824
|
-
browserVersion: "
|
|
24824
|
+
browserVersion: "107.0" // to update, check https://github.com/microsoft/playwright/releases
|
|
24825
24825
|
});
|
|
24826
24826
|
|
|
24827
24827
|
const firefoxIsolatedTab = firefox.isolatedTab;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsenv/core",
|
|
3
|
-
"version": "30.0.
|
|
3
|
+
"version": "30.0.1",
|
|
4
4
|
"description": "Tool to develop, test and build js projects",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"eslint-plugin-html": "7.1.0",
|
|
111
111
|
"eslint-plugin-import": "2.26.0",
|
|
112
112
|
"eslint-plugin-react": "7.31.11",
|
|
113
|
-
"playwright": "1.29.
|
|
113
|
+
"playwright": "1.29.1",
|
|
114
114
|
"prettier": "2.8.1"
|
|
115
115
|
}
|
|
116
116
|
}
|
|
@@ -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: "109.0.5414.46", // 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: "107.0", // to update, check https://github.com/microsoft/playwright/releases
|
|
6
6
|
})
|
|
7
7
|
export const firefoxIsolatedTab = firefox.isolatedTab
|