@playdrop/playdrop-cli 0.14.7 → 0.14.9

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 (179) hide show
  1. package/config/client-meta.json +2 -2
  2. package/dist/commands/worker.d.ts +1 -1
  3. package/dist/commands/worker.js +29 -8
  4. package/dist/index.js +1 -1
  5. package/node_modules/@playdrop/config/client-meta.json +2 -2
  6. package/node_modules/@playwright/mcp/LICENSE +201 -0
  7. package/node_modules/@playwright/mcp/README.md +1592 -0
  8. package/node_modules/@playwright/mcp/cli.js +32 -0
  9. package/node_modules/@playwright/mcp/config.d.ts +239 -0
  10. package/node_modules/@playwright/mcp/index.d.ts +23 -0
  11. package/node_modules/@playwright/mcp/index.js +19 -0
  12. package/node_modules/@playwright/mcp/node_modules/playwright/LICENSE +202 -0
  13. package/node_modules/@playwright/mcp/node_modules/playwright/NOTICE +5 -0
  14. package/node_modules/@playwright/mcp/node_modules/playwright/README.md +318 -0
  15. package/node_modules/@playwright/mcp/node_modules/playwright/ThirdPartyNotices.txt +14 -0
  16. package/node_modules/@playwright/mcp/node_modules/playwright/cli.js +19 -0
  17. package/node_modules/@playwright/mcp/node_modules/playwright/index.d.ts +17 -0
  18. package/node_modules/@playwright/mcp/node_modules/playwright/index.js +17 -0
  19. package/node_modules/@playwright/mcp/node_modules/playwright/index.mjs +18 -0
  20. package/node_modules/@playwright/mcp/node_modules/playwright/jsx-runtime.js +42 -0
  21. package/node_modules/@playwright/mcp/node_modules/playwright/jsx-runtime.mjs +21 -0
  22. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/agentParser.js +89 -0
  23. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/copilot-setup-steps.yml +34 -0
  24. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/generateAgents.js +395 -0
  25. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-coverage.prompt.md +31 -0
  26. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-generate.prompt.md +8 -0
  27. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-generator.agent.md +88 -0
  28. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-heal.prompt.md +6 -0
  29. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-healer.agent.md +56 -0
  30. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-plan.prompt.md +9 -0
  31. package/node_modules/@playwright/mcp/node_modules/playwright/lib/agents/playwright-test-planner.agent.md +74 -0
  32. package/node_modules/@playwright/mcp/node_modules/playwright/lib/cli/reportActions.js +78 -0
  33. package/node_modules/@playwright/mcp/node_modules/playwright/lib/cli/testActions.js +213 -0
  34. package/node_modules/@playwright/mcp/node_modules/playwright/lib/common/index.js +2966 -0
  35. package/node_modules/@playwright/mcp/node_modules/playwright/lib/common/index.js.txt +34 -0
  36. package/node_modules/@playwright/mcp/node_modules/playwright/lib/errorContext.js +129 -0
  37. package/node_modules/@playwright/mcp/node_modules/playwright/lib/globals.js +58 -0
  38. package/node_modules/@playwright/mcp/node_modules/playwright/lib/index.js +783 -0
  39. package/node_modules/@playwright/mcp/node_modules/playwright/lib/isomorphic.js +260 -0
  40. package/node_modules/@playwright/mcp/node_modules/playwright/lib/isomorphic.js.txt +9 -0
  41. package/node_modules/@playwright/mcp/node_modules/playwright/lib/loader/loaderProcessEntry.js +34 -0
  42. package/node_modules/@playwright/mcp/node_modules/playwright/lib/loader/loaderProcessEntry.js.txt +9 -0
  43. package/node_modules/@playwright/mcp/node_modules/playwright/lib/matchers/expect.js +13480 -0
  44. package/node_modules/@playwright/mcp/node_modules/playwright/lib/matchers/expect.js.LICENSE +640 -0
  45. package/node_modules/@playwright/mcp/node_modules/playwright/lib/matchers/expect.js.txt +67 -0
  46. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/browserBackend.js +125 -0
  47. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/generatorTools.js +122 -0
  48. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/plannerTools.js +150 -0
  49. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/seed.js +82 -0
  50. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/streams.js +44 -0
  51. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testBackend.js +99 -0
  52. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testContext.js +306 -0
  53. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testTool.js +30 -0
  54. package/node_modules/@playwright/mcp/node_modules/playwright/lib/mcp/test/testTools.js +98 -0
  55. package/node_modules/@playwright/mcp/node_modules/playwright/lib/package.js +47 -0
  56. package/node_modules/@playwright/mcp/node_modules/playwright/lib/program.js +237 -0
  57. package/node_modules/@playwright/mcp/node_modules/playwright/lib/runner/index.js +8154 -0
  58. package/node_modules/@playwright/mcp/node_modules/playwright/lib/runner/index.js.txt +59 -0
  59. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/babelBundle.js +72275 -0
  60. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/babelBundle.js.LICENSE +2384 -0
  61. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/babelBundle.js.txt +325 -0
  62. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/esmLoader.js +8060 -0
  63. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/esmLoader.js.LICENSE +355 -0
  64. package/node_modules/@playwright/mcp/node_modules/playwright/lib/transform/esmLoader.js.txt +60 -0
  65. package/node_modules/@playwright/mcp/node_modules/playwright/lib/util.js +373 -0
  66. package/node_modules/@playwright/mcp/node_modules/playwright/lib/worker/workerProcessEntry.js +1850 -0
  67. package/node_modules/@playwright/mcp/node_modules/playwright/lib/worker/workerProcessEntry.js.txt +19 -0
  68. package/node_modules/@playwright/mcp/node_modules/playwright/package.json +58 -0
  69. package/node_modules/@playwright/mcp/node_modules/playwright/test.d.ts +18 -0
  70. package/node_modules/@playwright/mcp/node_modules/playwright/test.js +24 -0
  71. package/node_modules/@playwright/mcp/node_modules/playwright/test.mjs +35 -0
  72. package/node_modules/@playwright/mcp/node_modules/playwright/types/test.d.ts +10709 -0
  73. package/node_modules/@playwright/mcp/node_modules/playwright/types/testReporter.d.ts +908 -0
  74. package/node_modules/@playwright/mcp/node_modules/playwright-core/LICENSE +202 -0
  75. package/node_modules/@playwright/mcp/node_modules/playwright-core/NOTICE +5 -0
  76. package/node_modules/@playwright/mcp/node_modules/playwright-core/README.md +3 -0
  77. package/node_modules/@playwright/mcp/node_modules/playwright-core/ThirdPartyNotices.txt +13 -0
  78. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/install_media_pack.ps1 +5 -0
  79. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/install_webkit_wsl.ps1 +33 -0
  80. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_beta_linux.sh +42 -0
  81. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_beta_mac.sh +13 -0
  82. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_beta_win.ps1 +24 -0
  83. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_stable_linux.sh +42 -0
  84. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_stable_mac.sh +12 -0
  85. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_chrome_stable_win.ps1 +24 -0
  86. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_beta_linux.sh +48 -0
  87. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_beta_mac.sh +11 -0
  88. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_beta_win.ps1 +23 -0
  89. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_dev_linux.sh +48 -0
  90. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_dev_mac.sh +11 -0
  91. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_dev_win.ps1 +23 -0
  92. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_stable_linux.sh +48 -0
  93. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_stable_mac.sh +11 -0
  94. package/node_modules/@playwright/mcp/node_modules/playwright-core/bin/reinstall_msedge_stable_win.ps1 +24 -0
  95. package/node_modules/@playwright/mcp/node_modules/playwright-core/browsers.json +81 -0
  96. package/node_modules/@playwright/mcp/node_modules/playwright-core/cli.js +21 -0
  97. package/node_modules/@playwright/mcp/node_modules/playwright-core/index.d.ts +17 -0
  98. package/node_modules/@playwright/mcp/node_modules/playwright-core/index.js +17 -0
  99. package/node_modules/@playwright/mcp/node_modules/playwright-core/index.mjs +28 -0
  100. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/bootstrap.js +88 -0
  101. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/coreBundle.js +74495 -0
  102. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/cliDaemon.js +5 -0
  103. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/dashboardApp.js +3 -0
  104. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/mcp.js +10 -0
  105. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/entry/oopBrowserDownload.js +3 -0
  106. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/package.js +50 -0
  107. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/server/chromium/appIcon.png +0 -0
  108. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/server/electron/loader.js +118 -0
  109. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/serverRegistry.js +7347 -0
  110. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/serverRegistry.js.LICENSE +354 -0
  111. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/channelSessions.js +141 -0
  112. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/cli.js +6 -0
  113. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/help.json +707 -0
  114. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/minimist.js +128 -0
  115. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/output.js +343 -0
  116. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/program.js +404 -0
  117. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/registry.js +176 -0
  118. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/session.js +258 -0
  119. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/SKILL.md +420 -0
  120. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/element-attributes.md +23 -0
  121. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/playwright-tests.md +39 -0
  122. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/request-mocking.md +87 -0
  123. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/running-code.md +241 -0
  124. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/session-management.md +225 -0
  125. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/storage-state.md +275 -0
  126. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/test-generation.md +433 -0
  127. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/tracing.md +139 -0
  128. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/cli-client/skill/references/video-recording.md +143 -0
  129. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/dashboard/appIcon.png +0 -0
  130. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/trace/SKILL.md +171 -0
  131. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/utils/extension.js +78 -0
  132. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/tools/utils/socketConnection.js +108 -0
  133. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/utilsBundle.js +90764 -0
  134. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/utilsBundle.js.LICENSE +2179 -0
  135. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/codicon-DCmgc-ay.ttf +0 -0
  136. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-1bWoP6pv.svg +1 -0
  137. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-beta-k3eOH_eK.svg +1 -0
  138. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-nightly-Cp5nfeDT.svg +1 -0
  139. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/index-CyWAfh-p.js +11 -0
  140. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/index-DhC616m4.css +1 -0
  141. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/assets/safari-na3_-uQk.svg +1 -0
  142. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/index.html +29 -0
  143. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/dashboard/playwright-logo.svg +24 -0
  144. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/htmlReport/index.html +16 -0
  145. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/htmlReport/report.css +2 -0
  146. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/htmlReport/report.js +32 -0
  147. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule--QdMvsKi.css +1 -0
  148. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule-BVGIAA-i.js +32 -0
  149. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  150. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/index-BQ57a3QC.js +129 -0
  151. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/assets/index-l_lX622x.css +1 -0
  152. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/index.html +29 -0
  153. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/recorder/playwright-logo.svg +9 -0
  154. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/codeMirrorModule-BSEO6m_i.js +32 -0
  155. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/defaultSettingsView-CT5oRh4X.js +181 -0
  156. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/urlMatch-L3liM589.js +1 -0
  157. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/assets/xtermModule-BN2nOuEV.js +7 -0
  158. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/codeMirrorModule.-QdMvsKi.css +1 -0
  159. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  160. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/defaultSettingsView.BLFoOugd.css +1 -0
  161. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/index.B_TqY17P.css +1 -0
  162. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/index.DLSGjmWZ.js +1 -0
  163. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/index.html +44 -0
  164. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/manifest.webmanifest +16 -0
  165. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/playwright-logo.svg +9 -0
  166. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/snapshot.B_Jk1wbt.js +1 -0
  167. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/snapshot.html +10 -0
  168. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/sw.bundle.js +4 -0
  169. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/uiMode.C7UW1sC9.css +1 -0
  170. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/uiMode.CZvydVOh.js +5 -0
  171. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/uiMode.html +18 -0
  172. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/vite/traceViewer/xtermModule.kHJ-D0s7.css +1 -0
  173. package/node_modules/@playwright/mcp/node_modules/playwright-core/lib/xdg-open +1267 -0
  174. package/node_modules/@playwright/mcp/node_modules/playwright-core/package.json +34 -0
  175. package/node_modules/@playwright/mcp/node_modules/playwright-core/types/protocol.d.ts +24842 -0
  176. package/node_modules/@playwright/mcp/node_modules/playwright-core/types/structs.d.ts +45 -0
  177. package/node_modules/@playwright/mcp/node_modules/playwright-core/types/types.d.ts +26088 -0
  178. package/node_modules/@playwright/mcp/package.json +51 -0
  179. package/package.json +3 -1
@@ -0,0 +1,19 @@
1
+ # packages/playwright/lib/worker/workerProcessEntry.js
2
+ # total: 73.9 KB
3
+
4
+ ## Inlined (8)
5
+ 3.7 KB packages/playwright/src/util.ts
6
+ 8.7 KB packages/playwright/src/worker/fixtureRunner.ts
7
+ 21.1 KB packages/playwright/src/worker/testInfo.ts
8
+ 11.7 KB packages/playwright/src/worker/testTracing.ts
9
+ 5.4 KB packages/playwright/src/worker/timeoutManager.ts
10
+ 0.3 KB packages/playwright/src/worker/util.ts
11
+ 21.3 KB packages/playwright/src/worker/workerMain.ts
12
+ 0.1 KB packages/playwright/src/worker/workerProcessEntry.ts
13
+
14
+ ## External (5)
15
+ ../common
16
+ ../globals
17
+ ../matchers/expect
18
+ playwright-core/lib/coreBundle
19
+ playwright-core/lib/utilsBundle
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "playwright",
3
+ "version": "1.62.0-alpha-1783623505000",
4
+ "description": "A high-level API to automate web browsers",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/microsoft/playwright.git"
8
+ },
9
+ "homepage": "https://playwright.dev",
10
+ "engines": {
11
+ "node": ">=20"
12
+ },
13
+ "main": "index.js",
14
+ "exports": {
15
+ ".": {
16
+ "types": "./index.d.ts",
17
+ "import": "./index.mjs",
18
+ "require": "./index.js",
19
+ "default": "./index.js"
20
+ },
21
+ "./package.json": "./package.json",
22
+ "./lib/common": "./lib/common/index.js",
23
+ "./lib/program": "./lib/program.js",
24
+ "./lib/runner": "./lib/runner/index.js",
25
+ "./lib/transform/babelBundle": "./lib/transform/babelBundle.js",
26
+ "./jsx-runtime": {
27
+ "import": "./jsx-runtime.mjs",
28
+ "require": "./jsx-runtime.js",
29
+ "default": "./jsx-runtime.js"
30
+ },
31
+ "./lib/util": "./lib/util.js",
32
+ "./types/test": {
33
+ "types": "./types/test.d.ts"
34
+ },
35
+ "./types/testReporter": {
36
+ "types": "./types/testReporter.d.ts"
37
+ },
38
+ "./test": {
39
+ "types": "./test.d.ts",
40
+ "import": "./test.mjs",
41
+ "require": "./test.js",
42
+ "default": "./test.js"
43
+ }
44
+ },
45
+ "bin": {
46
+ "playwright": "cli.js"
47
+ },
48
+ "author": {
49
+ "name": "Microsoft Corporation"
50
+ },
51
+ "license": "Apache-2.0",
52
+ "dependencies": {
53
+ "playwright-core": "1.62.0-alpha-1783623505000"
54
+ },
55
+ "optionalDependencies": {
56
+ "fsevents": "2.3.2"
57
+ }
58
+ }
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Copyright (c) Microsoft Corporation.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ export * from './types/test';
18
+ export { default } from './types/test';
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Copyright (c) Microsoft Corporation.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ const pwt = require('./lib/index');
18
+ const playwright = require('./index');
19
+ const combinedExports = {
20
+ ...playwright,
21
+ ...pwt,
22
+ };
23
+
24
+ module.exports = Object.assign(combinedExports.test, combinedExports);
@@ -0,0 +1,35 @@
1
+ /**
2
+ * Copyright (c) Microsoft Corporation.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ import playwright from './test.js';
18
+
19
+ export const chromium = playwright.chromium;
20
+ export const firefox = playwright.firefox;
21
+ export const webkit = playwright.webkit;
22
+ export const selectors = playwright.selectors;
23
+ export const devices = playwright.devices;
24
+ export const errors = playwright.errors;
25
+ export const request = playwright.request;
26
+ export const _electron = playwright._electron;
27
+ export const _android = playwright._android;
28
+ export const _baseTest = playwright._baseTest;
29
+ export const _utilityTest = playwright._utilityTest;
30
+ export const test = playwright.test;
31
+ export const expect = playwright.expect;
32
+ export const defineConfig = playwright.defineConfig;
33
+ export const mergeTests = playwright.mergeTests;
34
+ export const mergeExpects = playwright.mergeExpects;
35
+ export default playwright.test;