@theia/playwright 1.71.0-next.41 → 1.71.0-next.44
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.
|
@@ -53,7 +53,7 @@ test_1.test.describe('Theia Main Menu', () => {
|
|
|
53
53
|
const label = await menuItem?.label();
|
|
54
54
|
(0, test_1.expect)(label).toBe('New Text File');
|
|
55
55
|
const shortCut = await menuItem?.shortCut();
|
|
56
|
-
(0, test_1.expect)(shortCut).toBe(util_1.OSUtil.isMacOS ? '
|
|
56
|
+
(0, test_1.expect)(shortCut).toBe(util_1.OSUtil.isMacOS ? '⌥+N' : app.isElectron ? 'Ctrl+N' : 'Alt+N');
|
|
57
57
|
const hasSubmenu = await menuItem?.hasSubmenu();
|
|
58
58
|
(0, test_1.expect)(hasSubmenu).toBe(false);
|
|
59
59
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/playwright",
|
|
3
|
-
"version": "1.71.0-next.
|
|
3
|
+
"version": "1.71.0-next.44+631e361db",
|
|
4
4
|
"description": "System tests for Theia",
|
|
5
5
|
"license": "EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"tslib": "^2.6.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@theia/cli": "1.71.0-next.
|
|
40
|
+
"@theia/cli": "1.71.0-next.44+631e361db",
|
|
41
41
|
"@types/fs-extra": "^9.0.8",
|
|
42
42
|
"allure-commandline": "^2.23.1",
|
|
43
43
|
"allure-playwright": "^2.5.0",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
51
|
"main": "lib/index",
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "631e361dbd0ab7ec2da64be1f24ec5769125b838"
|
|
53
53
|
}
|
|
@@ -64,7 +64,7 @@ test.describe('Theia Main Menu', () => {
|
|
|
64
64
|
expect(label).toBe('New Text File');
|
|
65
65
|
|
|
66
66
|
const shortCut = await menuItem?.shortCut();
|
|
67
|
-
expect(shortCut).toBe(OSUtil.isMacOS ? '
|
|
67
|
+
expect(shortCut).toBe(OSUtil.isMacOS ? '⌥+N' : app.isElectron ? 'Ctrl+N' : 'Alt+N');
|
|
68
68
|
|
|
69
69
|
const hasSubmenu = await menuItem?.hasSubmenu();
|
|
70
70
|
expect(hasSubmenu).toBe(false);
|