@theia/playwright 1.48.1 → 1.48.3

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.
Files changed (159) hide show
  1. package/README.md +54 -54
  2. package/lib/index.d.ts +30 -30
  3. package/lib/index.js +48 -48
  4. package/lib/tests/theia-app.test.d.ts +1 -1
  5. package/lib/tests/theia-app.test.js +29 -29
  6. package/lib/tests/theia-application-shell.test.d.ts +1 -1
  7. package/lib/tests/theia-application-shell.test.js +57 -57
  8. package/lib/tests/theia-explorer-view.test.d.ts +1 -1
  9. package/lib/tests/theia-explorer-view.test.js +183 -183
  10. package/lib/tests/theia-getting-started.test.d.ts +1 -1
  11. package/lib/tests/theia-getting-started.test.js +45 -45
  12. package/lib/tests/theia-main-menu.test.d.ts +1 -1
  13. package/lib/tests/theia-main-menu.test.js +111 -111
  14. package/lib/tests/theia-output-view.test.d.ts +1 -1
  15. package/lib/tests/theia-output-view.test.js +78 -78
  16. package/lib/tests/theia-preference-view.test.d.ts +1 -1
  17. package/lib/tests/theia-preference-view.test.js +101 -101
  18. package/lib/tests/theia-problems-view.test.d.ts +1 -1
  19. package/lib/tests/theia-problems-view.test.js +54 -54
  20. package/lib/tests/theia-quick-command.test.d.ts +1 -1
  21. package/lib/tests/theia-quick-command.test.js +69 -69
  22. package/lib/tests/theia-sample-app.test.d.ts +1 -1
  23. package/lib/tests/theia-sample-app.test.js +57 -57
  24. package/lib/tests/theia-status-bar.test.d.ts +1 -1
  25. package/lib/tests/theia-status-bar.test.js +44 -44
  26. package/lib/tests/theia-terminal-view.test.d.ts +1 -1
  27. package/lib/tests/theia-terminal-view.test.js +78 -78
  28. package/lib/tests/theia-text-editor.test.d.ts +1 -1
  29. package/lib/tests/theia-text-editor.test.js +155 -155
  30. package/lib/tests/theia-toolbar.test.d.ts +1 -1
  31. package/lib/tests/theia-toolbar.test.js +61 -61
  32. package/lib/tests/theia-workspace.test.d.ts +1 -1
  33. package/lib/tests/theia-workspace.test.js +72 -72
  34. package/lib/theia-about-dialog.d.ts +4 -4
  35. package/lib/theia-about-dialog.js +26 -26
  36. package/lib/theia-app-loader.d.ts +19 -19
  37. package/lib/theia-app-loader.js +129 -129
  38. package/lib/theia-app.d.ts +50 -50
  39. package/lib/theia-app.js +153 -153
  40. package/lib/theia-context-menu.d.ts +8 -8
  41. package/lib/theia-context-menu.js +37 -37
  42. package/lib/theia-dialog.d.ts +28 -28
  43. package/lib/theia-dialog.js +99 -99
  44. package/lib/theia-editor.d.ts +9 -9
  45. package/lib/theia-editor.js +68 -68
  46. package/lib/theia-explorer-view.d.ts +47 -47
  47. package/lib/theia-explorer-view.js +273 -273
  48. package/lib/theia-main-menu.d.ts +12 -12
  49. package/lib/theia-main-menu.js +53 -53
  50. package/lib/theia-menu-item.d.ts +14 -14
  51. package/lib/theia-menu-item.js +66 -66
  52. package/lib/theia-menu.d.ts +16 -16
  53. package/lib/theia-menu.js +86 -86
  54. package/lib/theia-monaco-editor.d.ts +15 -15
  55. package/lib/theia-monaco-editor.js +75 -75
  56. package/lib/theia-notification-indicator.d.ts +7 -7
  57. package/lib/theia-notification-indicator.js +44 -44
  58. package/lib/theia-notification-overlay.d.ts +22 -22
  59. package/lib/theia-notification-overlay.js +79 -79
  60. package/lib/theia-output-channel.d.ts +24 -24
  61. package/lib/theia-output-channel.js +71 -71
  62. package/lib/theia-output-view.d.ts +9 -9
  63. package/lib/theia-output-view.js +81 -81
  64. package/lib/theia-page-object.d.ts +7 -7
  65. package/lib/theia-page-object.js +27 -27
  66. package/lib/theia-preference-view.d.ts +84 -84
  67. package/lib/theia-preference-view.js +209 -209
  68. package/lib/theia-problem-indicator.d.ts +8 -8
  69. package/lib/theia-problem-indicator.js +38 -38
  70. package/lib/theia-problem-view.d.ts +5 -5
  71. package/lib/theia-problem-view.js +30 -30
  72. package/lib/theia-quick-command-palette.d.ts +12 -12
  73. package/lib/theia-quick-command-palette.js +78 -78
  74. package/lib/theia-rename-dialog.d.ts +5 -5
  75. package/lib/theia-rename-dialog.js +34 -34
  76. package/lib/theia-status-bar.d.ts +13 -13
  77. package/lib/theia-status-bar.js +39 -39
  78. package/lib/theia-status-indicator.d.ts +10 -10
  79. package/lib/theia-status-indicator.js +48 -48
  80. package/lib/theia-terminal.d.ts +13 -13
  81. package/lib/theia-terminal.js +59 -59
  82. package/lib/theia-text-editor.d.ts +26 -26
  83. package/lib/theia-text-editor.js +120 -120
  84. package/lib/theia-toggle-bottom-indicator.d.ts +4 -4
  85. package/lib/theia-toggle-bottom-indicator.js +26 -26
  86. package/lib/theia-toolbar-item.d.ts +10 -10
  87. package/lib/theia-toolbar-item.js +39 -39
  88. package/lib/theia-toolbar.d.ts +19 -19
  89. package/lib/theia-toolbar.js +90 -90
  90. package/lib/theia-tree-node.d.ts +19 -19
  91. package/lib/theia-tree-node.js +72 -72
  92. package/lib/theia-view.d.ts +32 -32
  93. package/lib/theia-view.js +149 -149
  94. package/lib/theia-welcome-view.d.ts +5 -5
  95. package/lib/theia-welcome-view.js +30 -30
  96. package/lib/theia-workspace.d.ts +18 -18
  97. package/lib/theia-workspace.js +69 -69
  98. package/lib/util.d.ts +19 -19
  99. package/lib/util.js +93 -93
  100. package/package.json +2 -2
  101. package/src/index.ts +46 -46
  102. package/src/tests/resources/sample-files1/sample.txt +4 -4
  103. package/src/tests/resources/sample-files1/sampleFolder/sampleFolder1/sampleFolder1-1/sampleFile1-1-1.txt +1 -1
  104. package/src/tests/resources/sample-files1/sampleFolder/sampleFolder1/sampleFolder1-1/sampleFile1-1-2.txt +1 -1
  105. package/src/tests/resources/sample-files1/sampleFolder/sampleFolder1/sampleFolder1-2/sampleFile1-2-1.txt +1 -1
  106. package/src/tests/resources/sample-files1/sampleFolder/sampleFolder1/sampleFolder1-2/sampleFile1-2-2.txt +1 -1
  107. package/src/tests/resources/sample-files1/sampleFolder/sampleFolder2/sampleFolder2-1/sampleFile2-1-1.txt +1 -1
  108. package/src/tests/resources/sample-files1/sampleFolder/sampleFolder2/sampleFolder2-1/sampleFile2-1-2.txt +1 -1
  109. package/src/tests/resources/sample-files1/sampleFolder/sampleFolder2/sampleFolder2-2/sampleFile2-2-1.txt +1 -1
  110. package/src/tests/resources/sample-files1/sampleFolder/sampleFolder2/sampleFolder2-2/sampleFile2-2-2.txt +1 -1
  111. package/src/tests/resources/sample-files2/another-sample.txt +1 -1
  112. package/src/tests/theia-app.test.ts +33 -33
  113. package/src/tests/theia-application-shell.test.ts +67 -67
  114. package/src/tests/theia-explorer-view.test.ts +211 -211
  115. package/src/tests/theia-getting-started.test.ts +50 -50
  116. package/src/tests/theia-main-menu.test.ts +133 -133
  117. package/src/tests/theia-output-view.test.ts +85 -85
  118. package/src/tests/theia-preference-view.test.ts +122 -122
  119. package/src/tests/theia-problems-view.test.ts +64 -64
  120. package/src/tests/theia-quick-command.test.ts +80 -80
  121. package/src/tests/theia-sample-app.test.ts +66 -66
  122. package/src/tests/theia-status-bar.test.ts +52 -52
  123. package/src/tests/theia-terminal-view.test.ts +90 -90
  124. package/src/tests/theia-text-editor.test.ts +187 -187
  125. package/src/tests/theia-toolbar.test.ts +69 -69
  126. package/src/tests/theia-workspace.test.ts +80 -80
  127. package/src/theia-about-dialog.ts +26 -26
  128. package/src/theia-app-loader.ts +167 -167
  129. package/src/theia-app.ts +188 -188
  130. package/src/theia-context-menu.ts +42 -42
  131. package/src/theia-dialog.ts +114 -114
  132. package/src/theia-editor.ts +73 -73
  133. package/src/theia-explorer-view.ts +311 -311
  134. package/src/theia-main-menu.ts +54 -54
  135. package/src/theia-menu-item.ts +75 -75
  136. package/src/theia-menu.ts +96 -96
  137. package/src/theia-monaco-editor.ts +83 -83
  138. package/src/theia-notification-indicator.ts +44 -44
  139. package/src/theia-notification-overlay.ts +94 -94
  140. package/src/theia-output-channel.ts +88 -88
  141. package/src/theia-output-view.ts +87 -87
  142. package/src/theia-page-object.ts +29 -29
  143. package/src/theia-preference-view.ts +240 -240
  144. package/src/theia-problem-indicator.ts +37 -37
  145. package/src/theia-problem-view.ts +30 -30
  146. package/src/theia-quick-command-palette.ts +81 -81
  147. package/src/theia-rename-dialog.ts +35 -35
  148. package/src/theia-status-bar.ts +44 -44
  149. package/src/theia-status-indicator.ts +50 -50
  150. package/src/theia-terminal.ts +69 -69
  151. package/src/theia-text-editor.ts +141 -141
  152. package/src/theia-toggle-bottom-indicator.ts +21 -21
  153. package/src/theia-toolbar-item.ts +41 -41
  154. package/src/theia-toolbar.ts +99 -99
  155. package/src/theia-tree-node.ts +81 -81
  156. package/src/theia-view.ts +177 -177
  157. package/src/theia-welcome-view.ts +31 -31
  158. package/src/theia-workspace.ts +76 -76
  159. package/src/util.ts +91 -91
package/README.md CHANGED
@@ -1,54 +1,54 @@
1
- <div align='center'>
2
-
3
- <br />
4
-
5
- <img src='https://raw.githubusercontent.com/eclipse-theia/theia/master/logo/theia.svg?sanitize=true' alt='theia-ext-logo' width='100px' />
6
-
7
- <h2>ECLIPSE THEIA - PLAYWRIGHT</h2>
8
-
9
- <hr />
10
-
11
- </div>
12
-
13
- ## Description
14
-
15
- Theia 🎭 Playwright is a [page object](https://martinfowler.com/bliki/PageObject.html) framework based on [Playwright](https://github.com/microsoft/playwright) for developing system tests of [Theia](https://github.com/eclipse-theia/theia)-based applications. See it in action below.
16
-
17
- <div style='margin:0 auto;width:70%;'>
18
-
19
- ![Theia System Testing in Action](./docs/images/teaser.gif)
20
-
21
- </div>
22
-
23
- The Theia 🎭 Playwright page objects introduce abstraction over Theia's user interfaces, encapsulating the details of the user interface interactions, wait conditions, etc., to help keeping your tests more concise, maintainable, and stable.
24
- Ready for an [example](./docs/GETTING_STARTED.md)?
25
-
26
- The actual interaction with the Theia application is implemented with 🎭 Playwright in Typescript. Thus, we can take advantage of [Playwright's benefits](https://playwright.dev/docs/why-playwright/) and run or debug tests headless or headful across all modern browsers.
27
- Check out [Playwright's documentation](https://playwright.dev/docs/intro) for more information.
28
-
29
- This page object framework not only covers Theia's generic capabilities, such as handling views, the quick command palette, file explorer etc.
30
- It is [extensible](./docs/EXTENSIBILITY.md) so you can add dedicated page objects for custom Theia components, such as custom views, editors, menus, etc.
31
-
32
- ## Documentation
33
-
34
- - [Getting Started](./docs/GETTING_STARTED.md)
35
- - [Extensibility](./docs/EXTENSIBILITY.md)
36
- - [Theia 🎭 Playwright Template](https://github.com/eclipse-theia/theia-playwright-template)
37
- - [Building and Developing Theia 🎭 Playwright](./docs/DEVELOPING.md)
38
-
39
- ## Additional Information
40
-
41
- - [Theia - GitHub](https://github.com/eclipse-theia/theia)
42
- - [Theia - Website](https://theia-ide.org/)
43
- - [Playwright - GitHub](https://github.com/microsoft/playwright)
44
- - [Playwright - Website](https://playwright.dev)
45
-
46
- ## License
47
-
48
- - [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/)
49
- - [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
50
-
51
- ## Trademark
52
-
53
- "Theia" is a trademark of the Eclipse Foundation
54
- https://www.eclipse.org/theia
1
+ <div align='center'>
2
+
3
+ <br />
4
+
5
+ <img src='https://raw.githubusercontent.com/eclipse-theia/theia/master/logo/theia.svg?sanitize=true' alt='theia-ext-logo' width='100px' />
6
+
7
+ <h2>ECLIPSE THEIA - PLAYWRIGHT</h2>
8
+
9
+ <hr />
10
+
11
+ </div>
12
+
13
+ ## Description
14
+
15
+ Theia 🎭 Playwright is a [page object](https://martinfowler.com/bliki/PageObject.html) framework based on [Playwright](https://github.com/microsoft/playwright) for developing system tests of [Theia](https://github.com/eclipse-theia/theia)-based applications. See it in action below.
16
+
17
+ <div style='margin:0 auto;width:70%;'>
18
+
19
+ ![Theia System Testing in Action](./docs/images/teaser.gif)
20
+
21
+ </div>
22
+
23
+ The Theia 🎭 Playwright page objects introduce abstraction over Theia's user interfaces, encapsulating the details of the user interface interactions, wait conditions, etc., to help keeping your tests more concise, maintainable, and stable.
24
+ Ready for an [example](./docs/GETTING_STARTED.md)?
25
+
26
+ The actual interaction with the Theia application is implemented with 🎭 Playwright in Typescript. Thus, we can take advantage of [Playwright's benefits](https://playwright.dev/docs/why-playwright/) and run or debug tests headless or headful across all modern browsers.
27
+ Check out [Playwright's documentation](https://playwright.dev/docs/intro) for more information.
28
+
29
+ This page object framework not only covers Theia's generic capabilities, such as handling views, the quick command palette, file explorer etc.
30
+ It is [extensible](./docs/EXTENSIBILITY.md) so you can add dedicated page objects for custom Theia components, such as custom views, editors, menus, etc.
31
+
32
+ ## Documentation
33
+
34
+ - [Getting Started](./docs/GETTING_STARTED.md)
35
+ - [Extensibility](./docs/EXTENSIBILITY.md)
36
+ - [Theia 🎭 Playwright Template](https://github.com/eclipse-theia/theia-playwright-template)
37
+ - [Building and Developing Theia 🎭 Playwright](./docs/DEVELOPING.md)
38
+
39
+ ## Additional Information
40
+
41
+ - [Theia - GitHub](https://github.com/eclipse-theia/theia)
42
+ - [Theia - Website](https://theia-ide.org/)
43
+ - [Playwright - GitHub](https://github.com/microsoft/playwright)
44
+ - [Playwright - Website](https://playwright.dev)
45
+
46
+ ## License
47
+
48
+ - [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/)
49
+ - [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
50
+
51
+ ## Trademark
52
+
53
+ "Theia" is a trademark of the Eclipse Foundation
54
+ https://www.eclipse.org/theia
package/lib/index.d.ts CHANGED
@@ -1,31 +1,31 @@
1
- export * from './theia-about-dialog';
2
- export * from './theia-app';
3
- export * from './theia-app-loader';
4
- export * from './theia-context-menu';
5
- export * from './theia-dialog';
6
- export * from './theia-editor';
7
- export * from './theia-explorer-view';
8
- export * from './theia-main-menu';
9
- export * from './theia-menu-item';
10
- export * from './theia-menu';
11
- export * from './theia-notification-indicator';
12
- export * from './theia-notification-overlay';
13
- export * from './theia-output-channel';
14
- export * from './theia-output-view';
15
- export * from './theia-page-object';
16
- export * from './theia-preference-view';
17
- export * from './theia-problem-indicator';
18
- export * from './theia-problem-view';
19
- export * from './theia-quick-command-palette';
20
- export * from './theia-rename-dialog';
21
- export * from './theia-status-bar';
22
- export * from './theia-status-indicator';
23
- export * from './theia-text-editor';
24
- export * from './theia-toggle-bottom-indicator';
25
- export * from './theia-toolbar';
26
- export * from './theia-toolbar-item';
27
- export * from './theia-tree-node';
28
- export * from './theia-view';
29
- export * from './theia-workspace';
30
- export * from './util';
1
+ export * from './theia-about-dialog';
2
+ export * from './theia-app';
3
+ export * from './theia-app-loader';
4
+ export * from './theia-context-menu';
5
+ export * from './theia-dialog';
6
+ export * from './theia-editor';
7
+ export * from './theia-explorer-view';
8
+ export * from './theia-main-menu';
9
+ export * from './theia-menu-item';
10
+ export * from './theia-menu';
11
+ export * from './theia-notification-indicator';
12
+ export * from './theia-notification-overlay';
13
+ export * from './theia-output-channel';
14
+ export * from './theia-output-view';
15
+ export * from './theia-page-object';
16
+ export * from './theia-preference-view';
17
+ export * from './theia-problem-indicator';
18
+ export * from './theia-problem-view';
19
+ export * from './theia-quick-command-palette';
20
+ export * from './theia-rename-dialog';
21
+ export * from './theia-status-bar';
22
+ export * from './theia-status-indicator';
23
+ export * from './theia-text-editor';
24
+ export * from './theia-toggle-bottom-indicator';
25
+ export * from './theia-toolbar';
26
+ export * from './theia-toolbar-item';
27
+ export * from './theia-tree-node';
28
+ export * from './theia-view';
29
+ export * from './theia-workspace';
30
+ export * from './util';
31
31
  //# sourceMappingURL=index.d.ts.map
package/lib/index.js CHANGED
@@ -1,49 +1,49 @@
1
- "use strict";
2
- // *****************************************************************************
3
- // Copyright (C) 2022 EclipseSource and others.
4
- //
5
- // This program and the accompanying materials are made available under the
6
- // terms of the Eclipse Public License v. 2.0 which is available at
7
- // http://www.eclipse.org/legal/epl-2.0.
8
- //
9
- // This Source Code may also be made available under the following Secondary
10
- // Licenses when the conditions for such availability set forth in the Eclipse
11
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
- // with the GNU Classpath Exception which is available at
13
- // https://www.gnu.org/software/classpath/license.html.
14
- //
15
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
- // *****************************************************************************
17
- Object.defineProperty(exports, "__esModule", { value: true });
18
- const tslib_1 = require("tslib");
19
- (0, tslib_1.__exportStar)(require("./theia-about-dialog"), exports);
20
- (0, tslib_1.__exportStar)(require("./theia-app"), exports);
21
- (0, tslib_1.__exportStar)(require("./theia-app-loader"), exports);
22
- (0, tslib_1.__exportStar)(require("./theia-context-menu"), exports);
23
- (0, tslib_1.__exportStar)(require("./theia-dialog"), exports);
24
- (0, tslib_1.__exportStar)(require("./theia-editor"), exports);
25
- (0, tslib_1.__exportStar)(require("./theia-explorer-view"), exports);
26
- (0, tslib_1.__exportStar)(require("./theia-main-menu"), exports);
27
- (0, tslib_1.__exportStar)(require("./theia-menu-item"), exports);
28
- (0, tslib_1.__exportStar)(require("./theia-menu"), exports);
29
- (0, tslib_1.__exportStar)(require("./theia-notification-indicator"), exports);
30
- (0, tslib_1.__exportStar)(require("./theia-notification-overlay"), exports);
31
- (0, tslib_1.__exportStar)(require("./theia-output-channel"), exports);
32
- (0, tslib_1.__exportStar)(require("./theia-output-view"), exports);
33
- (0, tslib_1.__exportStar)(require("./theia-page-object"), exports);
34
- (0, tslib_1.__exportStar)(require("./theia-preference-view"), exports);
35
- (0, tslib_1.__exportStar)(require("./theia-problem-indicator"), exports);
36
- (0, tslib_1.__exportStar)(require("./theia-problem-view"), exports);
37
- (0, tslib_1.__exportStar)(require("./theia-quick-command-palette"), exports);
38
- (0, tslib_1.__exportStar)(require("./theia-rename-dialog"), exports);
39
- (0, tslib_1.__exportStar)(require("./theia-status-bar"), exports);
40
- (0, tslib_1.__exportStar)(require("./theia-status-indicator"), exports);
41
- (0, tslib_1.__exportStar)(require("./theia-text-editor"), exports);
42
- (0, tslib_1.__exportStar)(require("./theia-toggle-bottom-indicator"), exports);
43
- (0, tslib_1.__exportStar)(require("./theia-toolbar"), exports);
44
- (0, tslib_1.__exportStar)(require("./theia-toolbar-item"), exports);
45
- (0, tslib_1.__exportStar)(require("./theia-tree-node"), exports);
46
- (0, tslib_1.__exportStar)(require("./theia-view"), exports);
47
- (0, tslib_1.__exportStar)(require("./theia-workspace"), exports);
48
- (0, tslib_1.__exportStar)(require("./util"), exports);
1
+ "use strict";
2
+ // *****************************************************************************
3
+ // Copyright (C) 2022 EclipseSource and others.
4
+ //
5
+ // This program and the accompanying materials are made available under the
6
+ // terms of the Eclipse Public License v. 2.0 which is available at
7
+ // http://www.eclipse.org/legal/epl-2.0.
8
+ //
9
+ // This Source Code may also be made available under the following Secondary
10
+ // Licenses when the conditions for such availability set forth in the Eclipse
11
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
+ // with the GNU Classpath Exception which is available at
13
+ // https://www.gnu.org/software/classpath/license.html.
14
+ //
15
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
+ // *****************************************************************************
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ const tslib_1 = require("tslib");
19
+ (0, tslib_1.__exportStar)(require("./theia-about-dialog"), exports);
20
+ (0, tslib_1.__exportStar)(require("./theia-app"), exports);
21
+ (0, tslib_1.__exportStar)(require("./theia-app-loader"), exports);
22
+ (0, tslib_1.__exportStar)(require("./theia-context-menu"), exports);
23
+ (0, tslib_1.__exportStar)(require("./theia-dialog"), exports);
24
+ (0, tslib_1.__exportStar)(require("./theia-editor"), exports);
25
+ (0, tslib_1.__exportStar)(require("./theia-explorer-view"), exports);
26
+ (0, tslib_1.__exportStar)(require("./theia-main-menu"), exports);
27
+ (0, tslib_1.__exportStar)(require("./theia-menu-item"), exports);
28
+ (0, tslib_1.__exportStar)(require("./theia-menu"), exports);
29
+ (0, tslib_1.__exportStar)(require("./theia-notification-indicator"), exports);
30
+ (0, tslib_1.__exportStar)(require("./theia-notification-overlay"), exports);
31
+ (0, tslib_1.__exportStar)(require("./theia-output-channel"), exports);
32
+ (0, tslib_1.__exportStar)(require("./theia-output-view"), exports);
33
+ (0, tslib_1.__exportStar)(require("./theia-page-object"), exports);
34
+ (0, tslib_1.__exportStar)(require("./theia-preference-view"), exports);
35
+ (0, tslib_1.__exportStar)(require("./theia-problem-indicator"), exports);
36
+ (0, tslib_1.__exportStar)(require("./theia-problem-view"), exports);
37
+ (0, tslib_1.__exportStar)(require("./theia-quick-command-palette"), exports);
38
+ (0, tslib_1.__exportStar)(require("./theia-rename-dialog"), exports);
39
+ (0, tslib_1.__exportStar)(require("./theia-status-bar"), exports);
40
+ (0, tslib_1.__exportStar)(require("./theia-status-indicator"), exports);
41
+ (0, tslib_1.__exportStar)(require("./theia-text-editor"), exports);
42
+ (0, tslib_1.__exportStar)(require("./theia-toggle-bottom-indicator"), exports);
43
+ (0, tslib_1.__exportStar)(require("./theia-toolbar"), exports);
44
+ (0, tslib_1.__exportStar)(require("./theia-toolbar-item"), exports);
45
+ (0, tslib_1.__exportStar)(require("./theia-tree-node"), exports);
46
+ (0, tslib_1.__exportStar)(require("./theia-view"), exports);
47
+ (0, tslib_1.__exportStar)(require("./theia-workspace"), exports);
48
+ (0, tslib_1.__exportStar)(require("./util"), exports);
49
49
  //# sourceMappingURL=index.js.map
@@ -1,2 +1,2 @@
1
- export {};
1
+ export {};
2
2
  //# sourceMappingURL=theia-app.test.d.ts.map
@@ -1,30 +1,30 @@
1
- "use strict";
2
- // *****************************************************************************
3
- // Copyright (C) 2021 logi.cals GmbH, EclipseSource and others.
4
- //
5
- // This program and the accompanying materials are made available under the
6
- // terms of the Eclipse Public License v. 2.0 which is available at
7
- // http://www.eclipse.org/legal/epl-2.0.
8
- //
9
- // This Source Code may also be made available under the following Secondary
10
- // Licenses when the conditions for such availability set forth in the Eclipse
11
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
- // with the GNU Classpath Exception which is available at
13
- // https://www.gnu.org/software/classpath/license.html.
14
- //
15
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
- // *****************************************************************************
17
- Object.defineProperty(exports, "__esModule", { value: true });
18
- const test_1 = require("@playwright/test");
19
- const theia_app_loader_1 = require("../theia-app-loader");
20
- test_1.test.describe('Theia Application', () => {
21
- let app;
22
- test_1.test.afterAll(async () => {
23
- await app.page.close();
24
- });
25
- (0, test_1.test)('should load and should show main content panel', async ({ playwright, browser }) => {
26
- app = await theia_app_loader_1.TheiaAppLoader.load({ playwright, browser });
27
- (0, test_1.expect)(await app.isMainContentPanelVisible()).toBe(true);
28
- });
29
- });
1
+ "use strict";
2
+ // *****************************************************************************
3
+ // Copyright (C) 2021 logi.cals GmbH, EclipseSource and others.
4
+ //
5
+ // This program and the accompanying materials are made available under the
6
+ // terms of the Eclipse Public License v. 2.0 which is available at
7
+ // http://www.eclipse.org/legal/epl-2.0.
8
+ //
9
+ // This Source Code may also be made available under the following Secondary
10
+ // Licenses when the conditions for such availability set forth in the Eclipse
11
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
+ // with the GNU Classpath Exception which is available at
13
+ // https://www.gnu.org/software/classpath/license.html.
14
+ //
15
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
+ // *****************************************************************************
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ const test_1 = require("@playwright/test");
19
+ const theia_app_loader_1 = require("../theia-app-loader");
20
+ test_1.test.describe('Theia Application', () => {
21
+ let app;
22
+ test_1.test.afterAll(async () => {
23
+ await app.page.close();
24
+ });
25
+ (0, test_1.test)('should load and should show main content panel', async ({ playwright, browser }) => {
26
+ app = await theia_app_loader_1.TheiaAppLoader.load({ playwright, browser });
27
+ (0, test_1.expect)(await app.isMainContentPanelVisible()).toBe(true);
28
+ });
29
+ });
30
30
  //# sourceMappingURL=theia-app.test.js.map
@@ -1,2 +1,2 @@
1
- export {};
1
+ export {};
2
2
  //# sourceMappingURL=theia-application-shell.test.d.ts.map
@@ -1,58 +1,58 @@
1
- "use strict";
2
- // *****************************************************************************
3
- // Copyright (C) 2023 Toro Cloud Pty Ltd and others.
4
- //
5
- // This program and the accompanying materials are made available under the
6
- // terms of the Eclipse Public License v. 2.0 which is available at
7
- // http://www.eclipse.org/legal/epl-2.0.
8
- //
9
- // This Source Code may also be made available under the following Secondary
10
- // Licenses when the conditions for such availability set forth in the Eclipse
11
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
- // with the GNU Classpath Exception which is available at
13
- // https://www.gnu.org/software/classpath/license.html.
14
- //
15
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- const test_1 = require("@playwright/test");
18
- const theia_app_loader_1 = require("../theia-app-loader");
19
- const theia_explorer_view_1 = require("../theia-explorer-view");
20
- const theia_text_editor_1 = require("../theia-text-editor");
21
- const theia_welcome_view_1 = require("../theia-welcome-view");
22
- const theia_workspace_1 = require("../theia-workspace");
23
- test_1.test.describe('Theia Application Shell', () => {
24
- test_1.test.describe.configure({
25
- timeout: 120000
26
- });
27
- let app;
28
- test_1.test.beforeAll(async ({ playwright, browser }) => {
29
- const ws = new theia_workspace_1.TheiaWorkspace(['src/tests/resources/sample-files1']);
30
- app = await theia_app_loader_1.TheiaAppLoader.load({ playwright, browser }, ws);
31
- // The welcome view must be closed because the memory leak only occurs when there are
32
- // no tabs left open.
33
- const welcomeView = new theia_welcome_view_1.TheiaWelcomeView(app);
34
- if (await welcomeView.isTabVisible()) {
35
- await welcomeView.close();
36
- }
37
- });
38
- test_1.test.afterAll(async () => {
39
- await app.page.close();
40
- });
41
- /**
42
- * The aim of this test is to detect memory leaks when opening and closing editors many times.
43
- * Remove the skip and run the test, check the logs for any memory leak warnings.
44
- * It should take less than 2min to run, if it takes longer than that, just increase the timeout.
45
- */
46
- test_1.test.skip('should open and close a text editor many times', async () => {
47
- for (let i = 0; i < 200; i++) {
48
- const explorer = await app.openView(theia_explorer_view_1.TheiaExplorerView);
49
- const fileStatNode = await explorer.getFileStatNodeByLabel('sample.txt');
50
- const contextMenu = await fileStatNode.openContextMenu();
51
- await contextMenu.clickMenuItem('Open');
52
- const textEditor = new theia_text_editor_1.TheiaTextEditor('sample.txt', app);
53
- await textEditor.waitForVisible();
54
- await textEditor.close();
55
- }
56
- });
57
- });
1
+ "use strict";
2
+ // *****************************************************************************
3
+ // Copyright (C) 2023 Toro Cloud Pty Ltd and others.
4
+ //
5
+ // This program and the accompanying materials are made available under the
6
+ // terms of the Eclipse Public License v. 2.0 which is available at
7
+ // http://www.eclipse.org/legal/epl-2.0.
8
+ //
9
+ // This Source Code may also be made available under the following Secondary
10
+ // Licenses when the conditions for such availability set forth in the Eclipse
11
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
+ // with the GNU Classpath Exception which is available at
13
+ // https://www.gnu.org/software/classpath/license.html.
14
+ //
15
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ const test_1 = require("@playwright/test");
18
+ const theia_app_loader_1 = require("../theia-app-loader");
19
+ const theia_explorer_view_1 = require("../theia-explorer-view");
20
+ const theia_text_editor_1 = require("../theia-text-editor");
21
+ const theia_welcome_view_1 = require("../theia-welcome-view");
22
+ const theia_workspace_1 = require("../theia-workspace");
23
+ test_1.test.describe('Theia Application Shell', () => {
24
+ test_1.test.describe.configure({
25
+ timeout: 120000
26
+ });
27
+ let app;
28
+ test_1.test.beforeAll(async ({ playwright, browser }) => {
29
+ const ws = new theia_workspace_1.TheiaWorkspace(['src/tests/resources/sample-files1']);
30
+ app = await theia_app_loader_1.TheiaAppLoader.load({ playwright, browser }, ws);
31
+ // The welcome view must be closed because the memory leak only occurs when there are
32
+ // no tabs left open.
33
+ const welcomeView = new theia_welcome_view_1.TheiaWelcomeView(app);
34
+ if (await welcomeView.isTabVisible()) {
35
+ await welcomeView.close();
36
+ }
37
+ });
38
+ test_1.test.afterAll(async () => {
39
+ await app.page.close();
40
+ });
41
+ /**
42
+ * The aim of this test is to detect memory leaks when opening and closing editors many times.
43
+ * Remove the skip and run the test, check the logs for any memory leak warnings.
44
+ * It should take less than 2min to run, if it takes longer than that, just increase the timeout.
45
+ */
46
+ test_1.test.skip('should open and close a text editor many times', async () => {
47
+ for (let i = 0; i < 200; i++) {
48
+ const explorer = await app.openView(theia_explorer_view_1.TheiaExplorerView);
49
+ const fileStatNode = await explorer.getFileStatNodeByLabel('sample.txt');
50
+ const contextMenu = await fileStatNode.openContextMenu();
51
+ await contextMenu.clickMenuItem('Open');
52
+ const textEditor = new theia_text_editor_1.TheiaTextEditor('sample.txt', app);
53
+ await textEditor.waitForVisible();
54
+ await textEditor.close();
55
+ }
56
+ });
57
+ });
58
58
  //# sourceMappingURL=theia-application-shell.test.js.map
@@ -1,2 +1,2 @@
1
- export {};
1
+ export {};
2
2
  //# sourceMappingURL=theia-explorer-view.test.d.ts.map