aws-runtime-bridge 1.9.103 → 1.9.105

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 (174) hide show
  1. package/node_modules/playwright/LICENSE +202 -0
  2. package/node_modules/playwright/NOTICE +5 -0
  3. package/node_modules/playwright/README.md +318 -0
  4. package/node_modules/playwright/ThirdPartyNotices.txt +14 -0
  5. package/node_modules/playwright/cli.js +19 -0
  6. package/node_modules/playwright/index.d.ts +17 -0
  7. package/node_modules/playwright/index.js +17 -0
  8. package/node_modules/playwright/index.mjs +18 -0
  9. package/node_modules/playwright/jsx-runtime.js +42 -0
  10. package/node_modules/playwright/jsx-runtime.mjs +21 -0
  11. package/node_modules/playwright/lib/agents/agentParser.js +89 -0
  12. package/node_modules/playwright/lib/agents/copilot-setup-steps.yml +34 -0
  13. package/node_modules/playwright/lib/agents/generateAgents.js +395 -0
  14. package/node_modules/playwright/lib/agents/playwright-test-coverage.prompt.md +31 -0
  15. package/node_modules/playwright/lib/agents/playwright-test-generate.prompt.md +8 -0
  16. package/node_modules/playwright/lib/agents/playwright-test-generator.agent.md +88 -0
  17. package/node_modules/playwright/lib/agents/playwright-test-heal.prompt.md +6 -0
  18. package/node_modules/playwright/lib/agents/playwright-test-healer.agent.md +56 -0
  19. package/node_modules/playwright/lib/agents/playwright-test-plan.prompt.md +9 -0
  20. package/node_modules/playwright/lib/agents/playwright-test-planner.agent.md +74 -0
  21. package/node_modules/playwright/lib/cli/reportActions.js +78 -0
  22. package/node_modules/playwright/lib/cli/testActions.js +213 -0
  23. package/node_modules/playwright/lib/common/index.js +2957 -0
  24. package/node_modules/playwright/lib/common/index.js.txt +34 -0
  25. package/node_modules/playwright/lib/errorContext.js +129 -0
  26. package/node_modules/playwright/lib/globals.js +58 -0
  27. package/node_modules/playwright/lib/index.js +806 -0
  28. package/node_modules/playwright/lib/isomorphic.js +260 -0
  29. package/node_modules/playwright/lib/isomorphic.js.txt +9 -0
  30. package/node_modules/playwright/lib/loader/loaderProcessEntry.js +34 -0
  31. package/node_modules/playwright/lib/loader/loaderProcessEntry.js.txt +9 -0
  32. package/node_modules/playwright/lib/matchers/expect.js +13486 -0
  33. package/node_modules/playwright/lib/matchers/expect.js.LICENSE +640 -0
  34. package/node_modules/playwright/lib/matchers/expect.js.txt +67 -0
  35. package/node_modules/playwright/lib/mcp/test/browserBackend.js +125 -0
  36. package/node_modules/playwright/lib/mcp/test/generatorTools.js +122 -0
  37. package/node_modules/playwright/lib/mcp/test/plannerTools.js +150 -0
  38. package/node_modules/playwright/lib/mcp/test/seed.js +82 -0
  39. package/node_modules/playwright/lib/mcp/test/streams.js +44 -0
  40. package/node_modules/playwright/lib/mcp/test/testBackend.js +99 -0
  41. package/node_modules/playwright/lib/mcp/test/testContext.js +306 -0
  42. package/node_modules/playwright/lib/mcp/test/testTool.js +30 -0
  43. package/node_modules/playwright/lib/mcp/test/testTools.js +98 -0
  44. package/node_modules/playwright/lib/package.js +47 -0
  45. package/node_modules/playwright/lib/program.js +242 -0
  46. package/node_modules/playwright/lib/runner/index.js +8241 -0
  47. package/node_modules/playwright/lib/runner/index.js.txt +60 -0
  48. package/node_modules/playwright/lib/transform/babelBundle.js +72275 -0
  49. package/node_modules/playwright/lib/transform/babelBundle.js.LICENSE +2384 -0
  50. package/node_modules/playwright/lib/transform/babelBundle.js.txt +325 -0
  51. package/node_modules/playwright/lib/transform/esmLoader.js +8078 -0
  52. package/node_modules/playwright/lib/transform/esmLoader.js.LICENSE +355 -0
  53. package/node_modules/playwright/lib/transform/esmLoader.js.txt +60 -0
  54. package/node_modules/playwright/lib/util.js +373 -0
  55. package/node_modules/playwright/lib/worker/workerProcessEntry.js +1850 -0
  56. package/node_modules/playwright/lib/worker/workerProcessEntry.js.txt +19 -0
  57. package/node_modules/playwright/package.json +55 -0
  58. package/node_modules/playwright/test.d.ts +18 -0
  59. package/node_modules/playwright/test.js +24 -0
  60. package/node_modules/playwright/test.mjs +35 -0
  61. package/node_modules/playwright/types/test.d.ts +10848 -0
  62. package/node_modules/playwright/types/testReporter.d.ts +899 -0
  63. package/node_modules/playwright-core/LICENSE +202 -0
  64. package/node_modules/playwright-core/NOTICE +5 -0
  65. package/node_modules/playwright-core/README.md +3 -0
  66. package/node_modules/playwright-core/ThirdPartyNotices.txt +13 -0
  67. package/node_modules/playwright-core/bin/install_media_pack.ps1 +5 -0
  68. package/node_modules/playwright-core/bin/install_webkit_wsl.ps1 +33 -0
  69. package/node_modules/playwright-core/bin/reinstall_chrome_beta_linux.sh +42 -0
  70. package/node_modules/playwright-core/bin/reinstall_chrome_beta_mac.sh +13 -0
  71. package/node_modules/playwright-core/bin/reinstall_chrome_beta_win.ps1 +24 -0
  72. package/node_modules/playwright-core/bin/reinstall_chrome_stable_linux.sh +42 -0
  73. package/node_modules/playwright-core/bin/reinstall_chrome_stable_mac.sh +12 -0
  74. package/node_modules/playwright-core/bin/reinstall_chrome_stable_win.ps1 +24 -0
  75. package/node_modules/playwright-core/bin/reinstall_msedge_beta_linux.sh +48 -0
  76. package/node_modules/playwright-core/bin/reinstall_msedge_beta_mac.sh +11 -0
  77. package/node_modules/playwright-core/bin/reinstall_msedge_beta_win.ps1 +23 -0
  78. package/node_modules/playwright-core/bin/reinstall_msedge_dev_linux.sh +48 -0
  79. package/node_modules/playwright-core/bin/reinstall_msedge_dev_mac.sh +11 -0
  80. package/node_modules/playwright-core/bin/reinstall_msedge_dev_win.ps1 +23 -0
  81. package/node_modules/playwright-core/bin/reinstall_msedge_stable_linux.sh +48 -0
  82. package/node_modules/playwright-core/bin/reinstall_msedge_stable_mac.sh +11 -0
  83. package/node_modules/playwright-core/bin/reinstall_msedge_stable_win.ps1 +24 -0
  84. package/node_modules/playwright-core/browsers.json +75 -0
  85. package/node_modules/playwright-core/cli.js +21 -0
  86. package/node_modules/playwright-core/index.d.ts +17 -0
  87. package/node_modules/playwright-core/index.js +17 -0
  88. package/node_modules/playwright-core/index.mjs +28 -0
  89. package/node_modules/playwright-core/lib/bootstrap.js +88 -0
  90. package/node_modules/playwright-core/lib/coreBundle.js +74830 -0
  91. package/node_modules/playwright-core/lib/entry/cliDaemon.js +5 -0
  92. package/node_modules/playwright-core/lib/entry/dashboardApp.js +3 -0
  93. package/node_modules/playwright-core/lib/entry/mcp.js +10 -0
  94. package/node_modules/playwright-core/lib/entry/oopBrowserDownload.js +3 -0
  95. package/node_modules/playwright-core/lib/package.js +50 -0
  96. package/node_modules/playwright-core/lib/server/chromium/appIcon.png +0 -0
  97. package/node_modules/playwright-core/lib/server/electron/loader.js +118 -0
  98. package/node_modules/playwright-core/lib/serverRegistry.js +7347 -0
  99. package/node_modules/playwright-core/lib/serverRegistry.js.LICENSE +354 -0
  100. package/node_modules/playwright-core/lib/tools/cli-client/channelSessions.js +141 -0
  101. package/node_modules/playwright-core/lib/tools/cli-client/cli.js +6 -0
  102. package/node_modules/playwright-core/lib/tools/cli-client/help.json +708 -0
  103. package/node_modules/playwright-core/lib/tools/cli-client/minimist.js +128 -0
  104. package/node_modules/playwright-core/lib/tools/cli-client/output.js +343 -0
  105. package/node_modules/playwright-core/lib/tools/cli-client/program.js +404 -0
  106. package/node_modules/playwright-core/lib/tools/cli-client/registry.js +176 -0
  107. package/node_modules/playwright-core/lib/tools/cli-client/session.js +258 -0
  108. package/node_modules/playwright-core/lib/tools/dashboard/appIcon.png +0 -0
  109. package/node_modules/playwright-core/lib/tools/skills/playwright-cli/SKILL.md +420 -0
  110. package/node_modules/playwright-core/lib/tools/skills/playwright-cli/references/element-attributes.md +23 -0
  111. package/node_modules/playwright-core/lib/tools/skills/playwright-cli/references/playwright-tests.md +39 -0
  112. package/node_modules/playwright-core/lib/tools/skills/playwright-cli/references/request-mocking.md +87 -0
  113. package/node_modules/playwright-core/lib/tools/skills/playwright-cli/references/running-code.md +241 -0
  114. package/node_modules/playwright-core/lib/tools/skills/playwright-cli/references/session-management.md +225 -0
  115. package/node_modules/playwright-core/lib/tools/skills/playwright-cli/references/storage-state.md +275 -0
  116. package/node_modules/playwright-core/lib/tools/skills/playwright-cli/references/test-generation.md +433 -0
  117. package/node_modules/playwright-core/lib/tools/skills/playwright-cli/references/tracing.md +139 -0
  118. package/node_modules/playwright-core/lib/tools/skills/playwright-cli/references/video-recording.md +143 -0
  119. package/node_modules/playwright-core/lib/tools/skills/playwright-component-testing/SKILL.md +143 -0
  120. package/node_modules/playwright-core/lib/tools/skills/playwright-component-testing/references/gallery-spec.md +144 -0
  121. package/node_modules/playwright-core/lib/tools/skills/playwright-component-testing/references/migration.md +85 -0
  122. package/node_modules/playwright-core/lib/tools/skills/playwright-component-testing/references/react.md +67 -0
  123. package/node_modules/playwright-core/lib/tools/skills/playwright-component-testing/references/vue.md +75 -0
  124. package/node_modules/playwright-core/lib/tools/skills/playwright-trace/SKILL.md +171 -0
  125. package/node_modules/playwright-core/lib/tools/utils/extension.js +101 -0
  126. package/node_modules/playwright-core/lib/tools/utils/socketConnection.js +108 -0
  127. package/node_modules/playwright-core/lib/utilsBundle.js +90764 -0
  128. package/node_modules/playwright-core/lib/utilsBundle.js.LICENSE +2179 -0
  129. package/node_modules/playwright-core/lib/vite/dashboard/assets/codicon-DCmgc-ay.ttf +0 -0
  130. package/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-1bWoP6pv.svg +1 -0
  131. package/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-beta-k3eOH_eK.svg +1 -0
  132. package/node_modules/playwright-core/lib/vite/dashboard/assets/firefox-nightly-Cp5nfeDT.svg +1 -0
  133. package/node_modules/playwright-core/lib/vite/dashboard/assets/index-CyWAfh-p.js +11 -0
  134. package/node_modules/playwright-core/lib/vite/dashboard/assets/index-DhC616m4.css +1 -0
  135. package/node_modules/playwright-core/lib/vite/dashboard/assets/safari-na3_-uQk.svg +1 -0
  136. package/node_modules/playwright-core/lib/vite/dashboard/index.html +29 -0
  137. package/node_modules/playwright-core/lib/vite/dashboard/playwright-logo.svg +24 -0
  138. package/node_modules/playwright-core/lib/vite/htmlReport/index.html +16 -0
  139. package/node_modules/playwright-core/lib/vite/htmlReport/report.css +2 -0
  140. package/node_modules/playwright-core/lib/vite/htmlReport/report.js +32 -0
  141. package/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule--QdMvsKi.css +1 -0
  142. package/node_modules/playwright-core/lib/vite/recorder/assets/codeMirrorModule-CwYYHbcZ.js +32 -0
  143. package/node_modules/playwright-core/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
  144. package/node_modules/playwright-core/lib/vite/recorder/assets/index-DYjdXIbE.js +129 -0
  145. package/node_modules/playwright-core/lib/vite/recorder/assets/index-l_lX622x.css +1 -0
  146. package/node_modules/playwright-core/lib/vite/recorder/index.html +29 -0
  147. package/node_modules/playwright-core/lib/vite/recorder/playwright-logo.svg +9 -0
  148. package/node_modules/playwright-core/lib/vite/traceViewer/assets/codeMirrorModule-By56iMx7.js +32 -0
  149. package/node_modules/playwright-core/lib/vite/traceViewer/assets/defaultSettingsView-B34OrIms.js +181 -0
  150. package/node_modules/playwright-core/lib/vite/traceViewer/assets/urlMatch-L3liM589.js +1 -0
  151. package/node_modules/playwright-core/lib/vite/traceViewer/assets/xtermModule-COQkjINf.js +7 -0
  152. package/node_modules/playwright-core/lib/vite/traceViewer/codeMirrorModule.-QdMvsKi.css +1 -0
  153. package/node_modules/playwright-core/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
  154. package/node_modules/playwright-core/lib/vite/traceViewer/defaultSettingsView.BLFoOugd.css +1 -0
  155. package/node_modules/playwright-core/lib/vite/traceViewer/index.B_TqY17P.css +1 -0
  156. package/node_modules/playwright-core/lib/vite/traceViewer/index.Dl36UVQT.js +1 -0
  157. package/node_modules/playwright-core/lib/vite/traceViewer/index.html +44 -0
  158. package/node_modules/playwright-core/lib/vite/traceViewer/manifest.webmanifest +16 -0
  159. package/node_modules/playwright-core/lib/vite/traceViewer/playwright-logo.svg +9 -0
  160. package/node_modules/playwright-core/lib/vite/traceViewer/snapshot.B_Jk1wbt.js +1 -0
  161. package/node_modules/playwright-core/lib/vite/traceViewer/snapshot.html +10 -0
  162. package/node_modules/playwright-core/lib/vite/traceViewer/sw.bundle.js +4 -0
  163. package/node_modules/playwright-core/lib/vite/traceViewer/uiMode.C7UW1sC9.css +1 -0
  164. package/node_modules/playwright-core/lib/vite/traceViewer/uiMode.D962mr9b.js +5 -0
  165. package/node_modules/playwright-core/lib/vite/traceViewer/uiMode.html +18 -0
  166. package/node_modules/playwright-core/lib/vite/traceViewer/xtermModule.kHJ-D0s7.css +1 -0
  167. package/node_modules/playwright-core/lib/webp_codec.LICENSE +173 -0
  168. package/node_modules/playwright-core/lib/webp_codec.wasm +0 -0
  169. package/node_modules/playwright-core/lib/xdg-open +1267 -0
  170. package/node_modules/playwright-core/package.json +34 -0
  171. package/node_modules/playwright-core/types/protocol.d.ts +24842 -0
  172. package/node_modules/playwright-core/types/structs.d.ts +47 -0
  173. package/node_modules/playwright-core/types/types.d.ts +26188 -0
  174. package/package.json +3 -2
@@ -0,0 +1,34 @@
1
+ # packages/playwright/lib/common/index.js
2
+ # total: 114.4 KB
3
+
4
+ ## Inlined (20)
5
+ 12.0 KB packages/playwright/src/common/config.ts
6
+ 13.7 KB packages/playwright/src/common/configLoader.ts
7
+ 11.5 KB packages/playwright/src/common/fixtures.ts
8
+ 0.8 KB packages/playwright/src/common/index.ts
9
+ 1.3 KB packages/playwright/src/common/ipc.ts
10
+ 2.1 KB packages/playwright/src/common/poolBuilder.ts
11
+ 3.9 KB packages/playwright/src/common/process.ts
12
+ 4.7 KB packages/playwright/src/common/suiteUtils.ts
13
+ 8.5 KB packages/playwright/src/common/test.ts
14
+ 2.0 KB packages/playwright/src/common/testLoader.ts
15
+ 12.6 KB packages/playwright/src/common/testType.ts
16
+ 1.2 KB packages/playwright/src/common/validators.ts
17
+ 1.3 KB packages/playwright/src/isomorphic/teleReceiver.ts
18
+ 9.7 KB packages/playwright/src/transform/compilationCache.ts
19
+ 1.7 KB packages/playwright/src/transform/esmLoaderSync.ts
20
+ 1.1 KB packages/playwright/src/transform/pirates.ts
21
+ 1.1 KB packages/playwright/src/transform/portTransport.ts
22
+ 12.3 KB packages/playwright/src/transform/transform.ts
23
+ 3.2 KB packages/playwright/src/transform/tsconfig-loader.ts
24
+ 7.0 KB packages/playwright/src/util.ts
25
+
26
+ ## External (8)
27
+ ../globals
28
+ ../matchers/expect
29
+ ../package
30
+ ../transform/esmLoader.js
31
+ playwright
32
+ playwright-core/lib/bootstrap
33
+ playwright-core/lib/coreBundle
34
+ playwright-core/lib/utilsBundle
@@ -0,0 +1,129 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var errorContext_exports = {};
30
+ __export(errorContext_exports, {
31
+ buildErrorContext: () => buildErrorContext
32
+ });
33
+ module.exports = __toCommonJS(errorContext_exports);
34
+ var import_fs = __toESM(require("fs"));
35
+ var import_util = require("./util");
36
+ const { parseErrorStack } = require("playwright-core/lib/coreBundle").utils;
37
+ const { stripAnsiEscapes } = require("playwright-core/lib/coreBundle").iso;
38
+ const fixTestInstructions = `# Instructions
39
+
40
+ - Following Playwright test failed.
41
+ - Explain why, be concise, respect Playwright best practices.
42
+ - Provide a snippet of code with the fix, if possible.
43
+ `;
44
+ function buildErrorContext(options) {
45
+ const { titlePath, location, errors, pageSnapshot } = options;
46
+ const meaningfulErrors = errors.filter((e) => !!e.message);
47
+ if (!meaningfulErrors.length && !pageSnapshot)
48
+ return void 0;
49
+ const lines = [
50
+ fixTestInstructions,
51
+ "# Test info",
52
+ "",
53
+ `- Name: ${titlePath.join(" >> ")}`,
54
+ `- Location: ${(0, import_util.relativeFilePath)(location.file)}:${location.line}:${location.column}`
55
+ ];
56
+ if (meaningfulErrors.length) {
57
+ lines.push("", "# Error details");
58
+ for (const error of meaningfulErrors) {
59
+ lines.push(
60
+ "",
61
+ "```",
62
+ stripAnsiEscapes(error.message || ""),
63
+ "```"
64
+ );
65
+ if (error.errorContext) {
66
+ lines.push(
67
+ "",
68
+ "```yaml",
69
+ error.errorContext,
70
+ "```"
71
+ );
72
+ }
73
+ }
74
+ }
75
+ if (pageSnapshot) {
76
+ lines.push(
77
+ "",
78
+ "# Page snapshot",
79
+ "",
80
+ "```yaml",
81
+ pageSnapshot,
82
+ "```"
83
+ );
84
+ }
85
+ const lastError = meaningfulErrors[meaningfulErrors.length - 1];
86
+ const codeFrame = lastError ? buildCodeFrame(lastError, location) : void 0;
87
+ if (codeFrame) {
88
+ lines.push(
89
+ "",
90
+ "# Test source",
91
+ "",
92
+ "```ts",
93
+ codeFrame,
94
+ "```"
95
+ );
96
+ }
97
+ return lines.join("\n");
98
+ }
99
+ function buildCodeFrame(error, testLocation) {
100
+ const stack = error.stack;
101
+ if (!stack)
102
+ return void 0;
103
+ const parsed = parseErrorStack(stack);
104
+ const errorLocation = parsed.location;
105
+ if (!errorLocation)
106
+ return void 0;
107
+ let source;
108
+ try {
109
+ source = import_fs.default.readFileSync(errorLocation.file, "utf8");
110
+ } catch {
111
+ return void 0;
112
+ }
113
+ const sourceLines = source.split("\n");
114
+ const linesAbove = 100;
115
+ const linesBelow = 100;
116
+ const start = Math.max(0, errorLocation.line - linesAbove - 1);
117
+ const end = Math.min(sourceLines.length, errorLocation.line + linesBelow);
118
+ const scope = sourceLines.slice(start, end);
119
+ const lineNumberWidth = String(end).length;
120
+ const message = stripAnsiEscapes(error.message || "").split("\n")[0] || void 0;
121
+ const frame = scope.map((line, index) => `${start + index + 1 === errorLocation.line ? "> " : " "}${(start + index + 1).toString().padEnd(lineNumberWidth, " ")} | ${line}`);
122
+ if (message)
123
+ frame.splice(errorLocation.line - start, 0, `${" ".repeat(lineNumberWidth + 2)} | ${" ".repeat(Math.max(0, errorLocation.column - 2))} ^ ${message}`);
124
+ return frame.join("\n");
125
+ }
126
+ // Annotate the CommonJS export names for ESM import in node:
127
+ 0 && (module.exports = {
128
+ buildErrorContext
129
+ });
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var globals_exports = {};
20
+ __export(globals_exports, {
21
+ currentTestInfo: () => currentTestInfo,
22
+ currentlyLoadingFileSuite: () => currentlyLoadingFileSuite,
23
+ isWorkerProcess: () => isWorkerProcess,
24
+ setCurrentTestInfo: () => setCurrentTestInfo,
25
+ setCurrentlyLoadingFileSuite: () => setCurrentlyLoadingFileSuite,
26
+ setIsWorkerProcess: () => setIsWorkerProcess
27
+ });
28
+ module.exports = __toCommonJS(globals_exports);
29
+ let currentTestInfoValue = null;
30
+ function setCurrentTestInfo(testInfo) {
31
+ currentTestInfoValue = testInfo;
32
+ }
33
+ function currentTestInfo() {
34
+ return currentTestInfoValue;
35
+ }
36
+ let currentFileSuite;
37
+ function setCurrentlyLoadingFileSuite(suite) {
38
+ currentFileSuite = suite;
39
+ }
40
+ function currentlyLoadingFileSuite() {
41
+ return currentFileSuite;
42
+ }
43
+ let _isWorkerProcess = false;
44
+ function setIsWorkerProcess() {
45
+ _isWorkerProcess = true;
46
+ }
47
+ function isWorkerProcess() {
48
+ return _isWorkerProcess;
49
+ }
50
+ // Annotate the CommonJS export names for ESM import in node:
51
+ 0 && (module.exports = {
52
+ currentTestInfo,
53
+ currentlyLoadingFileSuite,
54
+ isWorkerProcess,
55
+ setCurrentTestInfo,
56
+ setCurrentlyLoadingFileSuite,
57
+ setIsWorkerProcess
58
+ });