testeranto 0.189.0 → 0.197.0

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 (632) hide show
  1. package/ALL_LICENSES.txt +11246 -0
  2. package/LICENSE +21 -0
  3. package/default-project.json +44 -0
  4. package/design-editor/DesignEditor.tsx +247 -0
  5. package/design-editor/index.ts +2 -0
  6. package/design-editor/server.ts +121 -0
  7. package/design-editor/types.ts +16 -0
  8. package/designs/default-project.json +210 -0
  9. package/dist/common/design-editor/DesignEditor.js +239 -0
  10. package/dist/common/design-editor/index.js +18 -0
  11. package/dist/common/design-editor/server.js +98 -0
  12. package/dist/common/design-editor/types.js +2 -0
  13. package/dist/common/src/App.js +11 -1
  14. package/dist/common/src/PM/PM_WithEslintAndTsc.js +8 -1
  15. package/dist/common/src/PM/base.js +1 -0
  16. package/dist/common/src/PM/main.js +370 -4
  17. package/dist/common/src/PM/node.js +4 -2
  18. package/dist/common/src/PM/pure.js +15 -57
  19. package/dist/common/src/PM/web.js +5 -3
  20. package/dist/common/src/Pure.test.js +46 -78
  21. package/dist/common/src/ReportServer.js +8 -2
  22. package/dist/common/src/build.js +1 -1
  23. package/dist/common/src/components/DesignEditorPage.js +169 -0
  24. package/dist/common/src/components/pure/AppFrame.js +62 -13
  25. package/dist/common/src/components/pure/ModalContent.test/implementation.js +13 -11
  26. package/dist/common/src/components/pure/ModalContent.test/index.js +48 -2
  27. package/dist/common/src/components/pure/ModalContent.test/specification.js +2 -2
  28. package/dist/common/src/components/pure/NavBar.js +9 -10
  29. package/dist/common/src/components/pure/ProcessManager.js +112 -0
  30. package/dist/common/src/components/pure/ProcessManagerView.js +237 -0
  31. package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +134 -106
  32. package/dist/common/src/components/pure/ProjectsPageView.js +18 -12
  33. package/dist/common/src/components/pure/SettingsButton.js +4 -74
  34. package/dist/common/src/components/pure/SingleProcessView.js +214 -0
  35. package/dist/common/src/components/pure/TestPageView.js +457 -78
  36. package/dist/common/src/components/pure/TestPageView.test/implementation.js +90 -135
  37. package/dist/common/src/components/stateful/FeaturesReporter.js +1 -1
  38. package/dist/common/src/components/stateful/FileTree.js +40 -0
  39. package/dist/common/src/components/stateful/ProcessManagerPage.js +112 -0
  40. package/dist/common/src/components/stateful/ProjectPage.js +6 -5
  41. package/dist/common/src/components/stateful/ProjectsPage.js +32 -6
  42. package/dist/common/src/components/stateful/SettingsPage.js +72 -0
  43. package/dist/common/src/components/stateful/SingleProcessPage.js +147 -0
  44. package/dist/common/src/components/stateful/TestPage.js +104 -8
  45. package/dist/common/src/components/stateful/TextEditorPage.js +154 -0
  46. package/dist/common/src/esbuildConfigs/inputFilesPlugin.js +3 -4
  47. package/dist/common/src/lib/BaseSuite.js +6 -3
  48. package/dist/common/src/lib/BaseSuite.test/mock.js +17 -30
  49. package/dist/common/src/lib/BaseSuite.test/test.js +33 -31
  50. package/dist/common/src/lib/abstractBase.js +28 -8
  51. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +12 -6
  52. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +12 -12
  53. package/dist/common/src/lib/basebuilder.js +1 -9
  54. package/dist/common/src/lib/classBuilder.js +3 -3
  55. package/dist/common/src/lib/core.js +3 -5
  56. package/dist/common/src/lib/index.js +11 -14
  57. package/dist/common/src/lib/pmProxy.js +37 -14
  58. package/dist/common/src/lib/pmProxy.test/adapter.js +12 -2
  59. package/dist/common/src/lib/pmProxy.test/implementation.js +73 -43
  60. package/dist/common/src/lib/pmProxy.test/specification.js +3 -0
  61. package/dist/common/src/utils/api.js +44 -33
  62. package/dist/common/src/utils/logFiles.js +48 -22
  63. package/dist/common/src/utils/makePrompt.js +5 -4
  64. package/dist/common/testeranto.config.js +15 -13
  65. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  66. package/dist/module/design-editor/DesignEditor.js +203 -0
  67. package/dist/module/design-editor/index.js +2 -0
  68. package/dist/module/design-editor/server.js +92 -0
  69. package/dist/module/src/App.js +11 -1
  70. package/dist/module/src/PM/PM_WithEslintAndTsc.js +8 -1
  71. package/dist/module/src/PM/base.js +1 -0
  72. package/dist/module/src/PM/main.js +370 -4
  73. package/dist/module/src/PM/node.js +4 -2
  74. package/dist/module/src/PM/pure.js +15 -57
  75. package/dist/module/src/PM/web.js +5 -3
  76. package/dist/module/src/Pure.test.js +46 -78
  77. package/dist/module/src/ReportServer.js +8 -2
  78. package/dist/module/src/build.js +1 -1
  79. package/dist/module/src/components/DesignEditorPage.js +132 -0
  80. package/dist/module/src/components/pure/AppFrame.js +30 -11
  81. package/dist/module/src/components/pure/ModalContent.test/implementation.js +13 -11
  82. package/dist/module/src/components/pure/ModalContent.test/index.js +48 -2
  83. package/dist/module/src/components/pure/ModalContent.test/specification.js +2 -2
  84. package/dist/module/src/components/pure/NavBar.js +10 -11
  85. package/dist/module/src/components/pure/ProcessManager.js +75 -0
  86. package/dist/module/src/components/pure/ProcessManagerView.js +200 -0
  87. package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +134 -106
  88. package/dist/module/src/components/pure/ProjectsPageView.js +20 -14
  89. package/dist/module/src/components/pure/SettingsButton.js +5 -42
  90. package/dist/module/src/components/pure/SingleProcessView.js +214 -0
  91. package/dist/module/src/components/pure/TestPageView.js +425 -76
  92. package/dist/module/src/components/pure/TestPageView.test/implementation.js +90 -135
  93. package/dist/module/src/components/stateful/FeaturesReporter.js +1 -1
  94. package/dist/module/src/components/stateful/FileTree.js +33 -0
  95. package/dist/module/src/components/stateful/ProcessManagerPage.js +75 -0
  96. package/dist/module/src/components/stateful/ProjectPage.js +6 -5
  97. package/dist/module/src/components/stateful/ProjectsPage.js +32 -6
  98. package/dist/module/src/components/stateful/SettingsPage.js +35 -0
  99. package/dist/module/src/components/stateful/SingleProcessPage.js +110 -0
  100. package/dist/module/src/components/stateful/TestPage.js +104 -8
  101. package/dist/module/src/components/stateful/TextEditorPage.js +117 -0
  102. package/dist/module/src/esbuildConfigs/inputFilesPlugin.js +3 -4
  103. package/dist/module/src/lib/BaseSuite.js +6 -3
  104. package/dist/module/src/lib/BaseSuite.test/mock.js +17 -30
  105. package/dist/module/src/lib/BaseSuite.test/test.js +33 -31
  106. package/dist/module/src/lib/abstractBase.js +28 -8
  107. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +12 -6
  108. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +12 -12
  109. package/dist/module/src/lib/basebuilder.js +1 -9
  110. package/dist/module/src/lib/classBuilder.js +3 -3
  111. package/dist/module/src/lib/core.js +3 -5
  112. package/dist/module/src/lib/index.js +11 -14
  113. package/dist/module/src/lib/pmProxy.js +37 -14
  114. package/dist/module/src/lib/pmProxy.test/adapter.js +12 -2
  115. package/dist/module/src/lib/pmProxy.test/implementation.js +73 -43
  116. package/dist/module/src/lib/pmProxy.test/specification.js +3 -0
  117. package/dist/module/src/utils/api.js +45 -34
  118. package/dist/module/src/utils/logFiles.js +45 -20
  119. package/dist/module/src/utils/makePrompt.js +5 -4
  120. package/dist/module/testeranto.config.js +15 -13
  121. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  122. package/dist/prebuild/App.css +54 -513
  123. package/dist/prebuild/App.js +13296 -2438
  124. package/dist/prebuild/ReportServer.mjs +104 -6
  125. package/dist/prebuild/build.mjs +8 -5
  126. package/dist/prebuild/run.mjs +389 -37
  127. package/dist/types/design-editor/DesignEditor.d.ts +18 -0
  128. package/dist/types/design-editor/server.d.ts +1 -0
  129. package/dist/types/{PM → src/PM}/index.d.ts +1 -1
  130. package/dist/types/{PM → src/PM}/main.d.ts +19 -0
  131. package/dist/types/{PM → src/PM}/pure.d.ts +7 -7
  132. package/dist/types/{Pure.test.d.ts → src/Pure.test.d.ts} +13 -1
  133. package/dist/types/src/components/DesignEditorPage.d.ts +1 -0
  134. package/dist/types/{components → src/components}/pure/AppFrame.d.ts +3 -1
  135. package/dist/types/{components/pure/ProjectPageView.test → src/components/pure/ModalContent.test}/index.d.ts +2 -1
  136. package/dist/types/{components → src/components}/pure/NavBar.d.ts +4 -0
  137. package/dist/types/src/components/pure/ProcessManager.d.ts +8 -0
  138. package/dist/types/src/components/pure/ProcessManagerView.d.ts +20 -0
  139. package/dist/types/{components → src/components}/pure/ProjectsPageView.d.ts +1 -1
  140. package/dist/types/src/components/pure/SettingsButton.d.ts +2 -0
  141. package/dist/types/{components → src/components}/pure/TestPageView.test/implementation.d.ts +3 -2
  142. package/dist/types/src/components/pure/TestPageView.test/index.d.ts +3 -0
  143. package/dist/types/src/components/stateful/FileTree.d.ts +8 -0
  144. package/dist/types/src/components/stateful/ProcessManagerPage.d.ts +2 -0
  145. package/dist/types/src/components/stateful/SettingsPage.d.ts +2 -0
  146. package/dist/types/src/components/stateful/SingleProcessPage.d.ts +2 -0
  147. package/dist/types/src/components/stateful/TextEditorPage.d.ts +1 -0
  148. package/dist/types/{lib → src/lib}/BaseSuite.test/mock.d.ts +3 -3
  149. package/dist/types/{lib → src/lib}/basebuilder.d.ts +1 -1
  150. package/dist/types/{lib → src/lib}/index.d.ts +1 -1
  151. package/dist/types/{lib → src/lib}/pmProxy.test/mockPMBase.d.ts +1 -1
  152. package/dist/types/src/run.d.ts +1 -0
  153. package/dist/types/src/utils/logFiles.d.ts +71 -0
  154. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  155. package/docs/test-page-components.md +91 -0
  156. package/package.json +27 -8
  157. package/src/App.tsx +11 -0
  158. package/src/PM/PM_WithEslintAndTsc.ts +9 -4
  159. package/src/PM/base.ts +1 -0
  160. package/src/PM/index.ts +1 -1
  161. package/src/PM/main.ts +424 -8
  162. package/src/PM/node.ts +5 -2
  163. package/src/PM/pure.ts +23 -61
  164. package/src/PM/web.ts +7 -3
  165. package/src/Pure.test.ts +63 -99
  166. package/src/README.md +20 -1
  167. package/src/ReportServer.ts +10 -3
  168. package/src/app.scss +169 -0
  169. package/src/build.ts +5 -1
  170. package/src/components/DesignEditorPage.tsx +169 -0
  171. package/src/components/pure/AppFrame.tsx +121 -16
  172. package/src/components/pure/ModalContent.test/implementation.tsx +14 -12
  173. package/src/components/pure/ModalContent.test/index.tsx +58 -6
  174. package/src/components/pure/ModalContent.test/specification.ts +2 -2
  175. package/src/components/pure/NavBar.tsx +31 -15
  176. package/src/components/pure/ProcessManager.tsx +117 -0
  177. package/src/components/pure/ProcessManagerView.tsx +414 -0
  178. package/src/components/pure/ProjectPageView.test/implementation.tsx +136 -106
  179. package/src/components/pure/ProjectPageView.test/index.tsx +0 -2
  180. package/src/components/pure/ProjectsPageView.tsx +41 -31
  181. package/src/components/pure/SettingsButton.tsx +7 -62
  182. package/src/components/pure/SingleProcessView.tsx +235 -0
  183. package/src/components/pure/TestPageView.test/implementation.ts +115 -147
  184. package/src/components/pure/TestPageView.test/specification.ts +0 -1
  185. package/src/components/pure/TestPageView.tsx +821 -100
  186. package/src/components/stateful/FeaturesReporter.tsx +1 -1
  187. package/src/components/stateful/FileTree.tsx +66 -0
  188. package/src/components/stateful/ProcessManagerPage.tsx +108 -0
  189. package/src/components/stateful/ProjectPage.tsx +6 -5
  190. package/src/components/stateful/ProjectsPage.tsx +36 -7
  191. package/src/components/stateful/SettingsPage.tsx +82 -0
  192. package/src/components/stateful/SingleProcessPage.tsx +155 -0
  193. package/src/components/stateful/TestPage.tsx +128 -20
  194. package/src/components/stateful/TextEditorPage.tsx +170 -0
  195. package/src/esbuildConfigs/inputFilesPlugin.ts +3 -4
  196. package/src/lib/BaseSuite.test/mock.ts +20 -41
  197. package/src/lib/BaseSuite.test/test.ts +38 -42
  198. package/src/lib/BaseSuite.ts +6 -3
  199. package/src/lib/abstractBase.ts +33 -14
  200. package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +14 -7
  201. package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +15 -14
  202. package/src/lib/basebuilder.ts +4 -9
  203. package/src/lib/classBuilder.ts +8 -10
  204. package/src/lib/core.ts +3 -19
  205. package/src/lib/index.ts +19 -19
  206. package/src/lib/pmProxy.test/adapter.ts +10 -2
  207. package/src/lib/pmProxy.test/implementation.ts +108 -57
  208. package/src/lib/pmProxy.test/mockPMBase.ts +1 -1
  209. package/src/lib/pmProxy.test/specification.ts +11 -0
  210. package/src/lib/pmProxy.ts +40 -15
  211. package/src/style.scss +3 -502
  212. package/src/templates/frontpage.html +317 -40
  213. package/src/templates/frontpage.md +79 -0
  214. package/src/themes.scss +40 -8
  215. package/src/utils/api.ts +47 -44
  216. package/src/utils/logFiles.ts +57 -23
  217. package/src/utils/makePrompt.ts +5 -4
  218. package/stargazers.txt +15 -0
  219. package/stargzers.js +68 -0
  220. package/testeranto/App.css +54 -513
  221. package/testeranto/App.js +13296 -2438
  222. package/testeranto/bundles/node/core/{chunk-L67RWZ4W.mjs → chunk-4CSH4UJE.mjs} +89 -116
  223. package/testeranto/bundles/node/core/{chunk-JBB5E3XJ.mjs → chunk-4JTDLQVA.mjs} +4 -9
  224. package/testeranto/bundles/node/core/chunk-C3APFDUV.mjs +70 -0
  225. package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +30 -42
  226. package/testeranto/bundles/node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +27 -31
  227. package/testeranto/bundles/node/core/src/lib/classBuilder.test/classBuilder.test.mjs +4 -16
  228. package/testeranto/bundles/node/core/src/lib/core.test/core.test.mjs +16 -27
  229. package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +468 -517
  230. package/testeranto/bundles/pure/core/{chunk-KHJ35R7C.mjs → chunk-62UVCSQC.mjs} +97 -72
  231. package/testeranto/bundles/pure/core/src/Pure.test.mjs +56 -74
  232. package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +39 -66
  233. package/testeranto/bundles/pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +25 -19
  234. package/testeranto/metafiles/node/core.json +2906 -0
  235. package/testeranto/{bundles/pure/core/metafile.json → metafiles/pure/core.json} +66 -81
  236. package/testeranto/metafiles/web/core.json +546 -0
  237. package/testeranto/reports/core/config.json +0 -24
  238. package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +1 -1
  239. package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +59 -94
  240. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +2 -55
  241. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/info.log +0 -2
  242. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +3 -33
  243. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +0 -4
  244. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/error.log +3 -0
  245. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/info.log +0 -2
  246. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +2 -2
  247. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +38 -90
  248. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +1 -1
  249. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +38 -90
  250. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/error.log +2 -0
  251. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +10 -0
  252. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +3 -3
  253. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stdout.log +6 -2
  254. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +4 -4
  255. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +22 -45
  256. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +10 -0
  257. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +1 -1
  258. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +22 -45
  259. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/error.log +2 -0
  260. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +4 -4
  261. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/tests.json +10 -10
  262. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +38 -90
  263. package/testeranto/reports/core/src/lib/core.test/core.test/node/prompt.txt +4 -4
  264. package/testeranto/reports/core/src/lib/core.test/core.test/node/type_errors.txt +5 -24
  265. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt +6 -14
  266. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +3 -3
  267. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +88 -0
  268. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log +10 -0
  269. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json +33 -43
  270. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +17 -43
  271. package/testeranto/reports/core/summary.json +15 -51
  272. package/testeranto/reportsweb_build_errors +546 -0
  273. package/testeranto.config.ts +16 -13
  274. package/tsc.log +37 -16
  275. package/tsconfig.json +3 -2
  276. package/CNAME +0 -1
  277. package/README.html +0 -302
  278. package/dist/common/src/PM/layers/base/PM_Base.js +0 -1
  279. package/dist/common/src/PM/layers/base/components/PageOperations.js +0 -1
  280. package/dist/common/src/PM/layers/base/components/PageOperations.testeranto.js +0 -1
  281. package/dist/common/src/PM/layers/linting/components/Linter.js +0 -1
  282. package/dist/common/src/PM/layers/linting/components/TypeChecker.js +0 -1
  283. package/dist/common/src/PM/layers/main/components/SidecarManager.js +0 -1
  284. package/dist/common/src/PM/layers/main/components/TestRunner.js +0 -1
  285. package/dist/module/src/PM/layers/base/PM_Base.js +0 -1
  286. package/dist/module/src/PM/layers/base/components/PageOperations.js +0 -1
  287. package/dist/module/src/PM/layers/base/components/PageOperations.testeranto.js +0 -1
  288. package/dist/module/src/PM/layers/linting/components/Linter.js +0 -1
  289. package/dist/module/src/PM/layers/linting/components/TypeChecker.js +0 -1
  290. package/dist/module/src/PM/layers/main/components/SidecarManager.js +0 -1
  291. package/dist/module/src/PM/layers/main/components/TestRunner.js +0 -1
  292. package/dist/tsconfig.tsbuildinfo +0 -1
  293. package/dist/types/PM/layers/base/components/PageOperations.d.ts +0 -0
  294. package/dist/types/PM/layers/base/components/PageOperations.testeranto.d.ts +0 -0
  295. package/dist/types/PM/layers/linting/components/Linter.d.ts +0 -0
  296. package/dist/types/PM/layers/linting/components/TypeChecker.d.ts +0 -0
  297. package/dist/types/PM/layers/main/components/SidecarManager.d.ts +0 -0
  298. package/dist/types/PM/layers/main/components/TestRunner.d.ts +0 -0
  299. package/dist/types/components/pure/SettingsButton.d.ts +0 -3
  300. package/dist/types/components/pure/TestPageView.test/index.d.ts +0 -32
  301. package/dist/types/utils/logFiles.d.ts +0 -7
  302. package/docs.html +0 -590
  303. package/example.css +0 -351
  304. package/index.html +0 -138
  305. package/scripts/compile-docs.js +0 -150
  306. package/smil30/SMIL-anim.mod.xsd +0 -163
  307. package/smil30/SMIL-control.mod.xsd +0 -73
  308. package/smil30/SMIL-layout.mod.xsd +0 -149
  309. package/smil30/SMIL-link.mod.xsd +0 -145
  310. package/smil30/SMIL-media.mod.xsd +0 -1646
  311. package/smil30/SMIL-metainformation.mod.xsd +0 -45
  312. package/smil30/SMIL-smiltext.mod.xsd +0 -353
  313. package/smil30/SMIL-state.mod.xsd +0 -133
  314. package/smil30/SMIL-struct.mod.xsd +0 -70
  315. package/smil30/SMIL-timing.mod.xsd +0 -105
  316. package/smil30/SMIL-transition.mod.xsd +0 -229
  317. package/smil30/SMIL.xsd +0 -63
  318. package/smil30/its.xsd +0 -42
  319. package/smil30/smil-attribs-1.mod.xsd +0 -610
  320. package/smil30/smil-datatypes-1.mod.xsd +0 -72
  321. package/smil30/smil-framework-1.mod.xsd +0 -45
  322. package/smil30/xml.xsd +0 -16
  323. package/src/App.scss +0 -123
  324. package/src/PM/layers/base/PM_Base.ts +0 -0
  325. package/src/PM/layers/base/components/PageOperations.testeranto.ts +0 -0
  326. package/src/PM/layers/base/components/PageOperations.ts +0 -0
  327. package/src/PM/layers/linting/components/Linter.ts +0 -0
  328. package/src/PM/layers/linting/components/TypeChecker.ts +0 -0
  329. package/src/PM/layers/main/components/SidecarManager.ts +0 -0
  330. package/src/PM/layers/main/components/TestRunner.ts +0 -0
  331. package/src/fonts.scss +0 -55
  332. package/style.css +0 -12175
  333. package/testeranto/bundles/node/core/chunk-ZQRRQYS4.mjs +0 -92
  334. package/testeranto/bundles/node/core/metafile.json +0 -5735
  335. package/testeranto/bundles/node/core/src/mothership/test.mjs +0 -24588
  336. package/testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf +0 -0
  337. package/testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf +0 -0
  338. package/testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf +0 -0
  339. package/testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf +0 -0
  340. package/testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf +0 -0
  341. package/testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf +0 -0
  342. package/testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf +0 -0
  343. package/testeranto/bundles/web/core/chunk-BADF3AZF.mjs +0 -108
  344. package/testeranto/bundles/web/core/chunk-BXV27S2S.mjs +0 -6252
  345. package/testeranto/bundles/web/core/chunk-EIYZKF2C.mjs +0 -223
  346. package/testeranto/bundles/web/core/chunk-FNXFUNA7.mjs +0 -28528
  347. package/testeranto/bundles/web/core/chunk-LU364HVS.mjs +0 -3311
  348. package/testeranto/bundles/web/core/chunk-QWII7WIM.mjs +0 -2281
  349. package/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs +0 -21775
  350. package/testeranto/bundles/web/core/metafile.json +0 -18227
  351. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.css +0 -12105
  352. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.html +0 -15
  353. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.mjs +0 -517
  354. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs +0 -166
  355. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css +0 -12105
  356. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.html +0 -15
  357. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.mjs +0 -93
  358. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css +0 -12105
  359. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs +0 -343
  360. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.css +0 -12105
  361. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs +0 -483
  362. package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs +0 -394
  363. package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +0 -256
  364. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/debug.log +0 -0
  365. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/error.log +0 -22
  366. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/exit.log +0 -1
  367. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/info.log +0 -4
  368. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/lint_errors.txt +0 -2
  369. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/message.txt +0 -17
  370. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/prompt.txt +0 -18
  371. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/tests.json +0 -57
  372. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/type_errors.txt +0 -55
  373. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/warn.log +0 -0
  374. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/lint_errors.txt +0 -0
  375. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/message.txt +0 -17
  376. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +0 -16
  377. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/suite-0/given-basicRender/then-4/butThen/features-reporter.png +0 -0
  378. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +0 -76
  379. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +0 -80
  380. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/debug.log +0 -0
  381. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/error.log +0 -0
  382. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/exit.log +0 -0
  383. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/info.log +0 -4
  384. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/lint_errors.txt +0 -0
  385. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/message.txt +0 -17
  386. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/prompt.txt +0 -15
  387. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/suite-0/given-basicRender/then-2/butThen/modal-content.png +0 -0
  388. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/tests.json +0 -42
  389. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/type_errors.txt +0 -65
  390. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/warn.log +0 -0
  391. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +0 -2
  392. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +0 -17
  393. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +0 -16
  394. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-6/butThen/happy-state.png +0 -0
  395. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-errorHandling/then-1/butThen/error-state.png +0 -0
  396. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -99
  397. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +0 -91
  398. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt +0 -0
  399. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/message.txt +0 -17
  400. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt +0 -18
  401. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json +0 -69
  402. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt +0 -111
  403. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -0
  404. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/message.txt +0 -17
  405. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +0 -15
  406. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +0 -31
  407. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +0 -113
  408. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -0
  409. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +0 -17
  410. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +0 -17
  411. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
  412. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +0 -1
  413. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +0 -71
  414. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +0 -65
  415. package/testeranto/reports/core/src/mothership/test/node/exit.log +0 -1
  416. package/testeranto/reports/core/src/mothership/test/node/lint_errors.txt +0 -0
  417. package/testeranto/reports/core/src/mothership/test/node/message.txt +0 -17
  418. package/testeranto/reports/core/src/mothership/test/node/prompt.txt +0 -14
  419. package/testeranto/reports/core/src/mothership/test/node/stderr.log +0 -27
  420. package/testeranto/reports/core/src/mothership/test/node/stdout.log +0 -8
  421. package/testeranto/reports/core/src/mothership/test/node/tests.json +0 -36
  422. package/testeranto/reports/core/src/mothership/test/node/type_errors.txt +0 -38
  423. package/videos/download-smil-xsd.sh +0 -29
  424. package/videos/project0/index.md +0 -72
  425. package/videos/project0/narration.json +0 -7
  426. package/videos/project0/narration.ssml +0 -58
  427. package/videos/project0/package.json +0 -21
  428. package/videos/project0/presentation.smil +0 -25
  429. package/videos/project0/smil30/SMIL-anim.mod.xsd +0 -163
  430. package/videos/project0/smil30/SMIL-anim.mod.xsd.1 +0 -163
  431. package/videos/project0/smil30/SMIL-anim.mod.xsd.2 +0 -163
  432. package/videos/project0/smil30/SMIL-control.mod.xsd +0 -73
  433. package/videos/project0/smil30/SMIL-control.mod.xsd.1 +0 -73
  434. package/videos/project0/smil30/SMIL-control.mod.xsd.2 +0 -73
  435. package/videos/project0/smil30/SMIL-layout.mod.xsd +0 -149
  436. package/videos/project0/smil30/SMIL-layout.mod.xsd.1 +0 -149
  437. package/videos/project0/smil30/SMIL-layout.mod.xsd.2 +0 -149
  438. package/videos/project0/smil30/SMIL-link.mod.xsd +0 -145
  439. package/videos/project0/smil30/SMIL-link.mod.xsd.1 +0 -145
  440. package/videos/project0/smil30/SMIL-link.mod.xsd.2 +0 -145
  441. package/videos/project0/smil30/SMIL-media.mod.xsd +0 -1646
  442. package/videos/project0/smil30/SMIL-media.mod.xsd.1 +0 -1646
  443. package/videos/project0/smil30/SMIL-media.mod.xsd.2 +0 -1646
  444. package/videos/project0/smil30/SMIL-metainformation.mod.xsd +0 -45
  445. package/videos/project0/smil30/SMIL-metainformation.mod.xsd.1 +0 -45
  446. package/videos/project0/smil30/SMIL-metainformation.mod.xsd.2 +0 -45
  447. package/videos/project0/smil30/SMIL-smiltext.mod.xsd +0 -353
  448. package/videos/project0/smil30/SMIL-smiltext.mod.xsd.1 +0 -353
  449. package/videos/project0/smil30/SMIL-smiltext.mod.xsd.2 +0 -353
  450. package/videos/project0/smil30/SMIL-state.mod.xsd +0 -133
  451. package/videos/project0/smil30/SMIL-state.mod.xsd.1 +0 -133
  452. package/videos/project0/smil30/SMIL-state.mod.xsd.2 +0 -133
  453. package/videos/project0/smil30/SMIL-struct.mod.xsd +0 -70
  454. package/videos/project0/smil30/SMIL-struct.mod.xsd.1 +0 -70
  455. package/videos/project0/smil30/SMIL-struct.mod.xsd.2 +0 -70
  456. package/videos/project0/smil30/SMIL-timing.mod.xsd +0 -105
  457. package/videos/project0/smil30/SMIL-timing.mod.xsd.1 +0 -105
  458. package/videos/project0/smil30/SMIL-timing.mod.xsd.2 +0 -105
  459. package/videos/project0/smil30/SMIL-transition.mod.xsd +0 -229
  460. package/videos/project0/smil30/SMIL-transition.mod.xsd.1 +0 -229
  461. package/videos/project0/smil30/SMIL-transition.mod.xsd.2 +0 -229
  462. package/videos/project0/smil30/SMIL.xsd +0 -63
  463. package/videos/project0/smil30/SMIL.xsd.1 +0 -63
  464. package/videos/project0/smil30/SMIL.xsd.2 +0 -63
  465. package/videos/project0/smil30/its.xsd +0 -42
  466. package/videos/project0/smil30/its.xsd.1 +0 -42
  467. package/videos/project0/smil30/its.xsd.2 +0 -42
  468. package/videos/project0/smil30/smil-attribs-1.mod.xsd +0 -610
  469. package/videos/project0/smil30/smil-attribs-1.mod.xsd.1 +0 -610
  470. package/videos/project0/smil30/smil-attribs-1.mod.xsd.2 +0 -610
  471. package/videos/project0/smil30/smil-datatypes-1.mod.xsd +0 -72
  472. package/videos/project0/smil30/smil-datatypes-1.mod.xsd.1 +0 -72
  473. package/videos/project0/smil30/smil-datatypes-1.mod.xsd.2 +0 -72
  474. package/videos/project0/smil30/smil-framework-1.mod.xsd +0 -45
  475. package/videos/project0/smil30/smil-framework-1.mod.xsd.1 +0 -45
  476. package/videos/project0/smil30/smil-framework-1.mod.xsd.2 +0 -45
  477. package/videos/project0/smil30/smil-profile-model-1.mod.xsd +0 -1331
  478. package/videos/project0/smil30/smil-profile-model-1.mod.xsd.1 +0 -1331
  479. package/videos/project0/smil30/smil-qname-1.mod.xsd +0 -121
  480. package/videos/project0/smil30/smil-qname-1.mod.xsd.1 +0 -121
  481. package/videos/project0/smil30/xml.xsd +0 -16
  482. package/videos/project0/smil30/xml.xsd.1 +0 -16
  483. package/videos/project0/smil30/xml.xsd.2 +0 -16
  484. package/videos/project0/smil30.xsd +0 -137
  485. package/videos/project0/src/audio/metadata.json +0 -5
  486. package/videos/project0/src/audio/narration.mp3 +0 -0
  487. package/videos/project0/src/motion-canvas.d.ts +0 -1
  488. package/videos/project0/src/project.meta +0 -31
  489. package/videos/project0/src/project.ts +0 -13
  490. package/videos/project0/src/scenes/example.meta +0 -5
  491. package/videos/project0/src/scenes/scene1.meta +0 -3
  492. package/videos/project0/src/scenes/scene1.tsx +0 -129
  493. package/videos/project0/src/scenes/scene2.tsx +0 -132
  494. package/videos/project0/src/scenes/scene3.meta +0 -26
  495. package/videos/project0/src/scenes/scene3.tsx +0 -188
  496. package/videos/project0/tsconfig.json +0 -4
  497. package/videos/project0/vite.config.ts +0 -10
  498. package/videos/trash/output/project.mp4 +0 -0
  499. package/videos/trash/text.mp4 +0 -0
  500. package/videos/trash/video/project.tsx +0 -549
  501. package/videos/trash/video/render.ts +0 -15
  502. package/videos/trash/vite.config.ts +0 -10
  503. package/videos/tts.js +0 -109
  504. /package/dist/{types/ReportServer.d.ts → module/design-editor/types.js} +0 -0
  505. /package/dist/types/{App.d.ts → src/App.d.ts} +0 -0
  506. /package/dist/types/{CoreTypes.d.ts → src/CoreTypes.d.ts} +0 -0
  507. /package/dist/types/{Init.d.ts → src/Init.d.ts} +0 -0
  508. /package/dist/types/{Node.d.ts → src/Node.d.ts} +0 -0
  509. /package/dist/types/{NodeSidecar.d.ts → src/NodeSidecar.d.ts} +0 -0
  510. /package/dist/types/{PM → src/PM}/PM_WithEslintAndTsc.d.ts +0 -0
  511. /package/dist/types/{PM → src/PM}/__tests__/nodeSidecar.testeranto.d.ts +0 -0
  512. /package/dist/types/{PM → src/PM}/__tests__/pureSidecar.testeranto.d.ts +0 -0
  513. /package/dist/types/{PM → src/PM}/__tests__/webSidecar.testeranto.d.ts +0 -0
  514. /package/dist/types/{PM → src/PM}/base.d.ts +0 -0
  515. /package/dist/types/{PM → src/PM}/node.d.ts +0 -0
  516. /package/dist/types/{PM → src/PM}/nodeSidecar.d.ts +0 -0
  517. /package/dist/types/{PM → src/PM}/pureSidecar.d.ts +0 -0
  518. /package/dist/types/{PM → src/PM}/sidecar.d.ts +0 -0
  519. /package/dist/types/{PM → src/PM}/types.d.ts +0 -0
  520. /package/dist/types/{PM → src/PM}/web.d.ts +0 -0
  521. /package/dist/types/{PM → src/PM}/webSidecar.d.ts +0 -0
  522. /package/dist/types/{Pure.d.ts → src/Pure.d.ts} +0 -0
  523. /package/dist/types/{PureSidecar.d.ts → src/PureSidecar.d.ts} +0 -0
  524. /package/dist/types/{build.d.ts → src/ReportServer.d.ts} +0 -0
  525. /package/dist/types/{ReportServer.test.ts → src/ReportServer.test.ts}/index.d.ts +0 -0
  526. /package/dist/types/{ReportServerLib.d.ts → src/ReportServerLib.d.ts} +0 -0
  527. /package/dist/types/{Types.d.ts → src/Types.d.ts} +0 -0
  528. /package/dist/types/{Web.d.ts → src/Web.d.ts} +0 -0
  529. /package/dist/types/{WebSidecar.d.ts → src/WebSidecar.d.ts} +0 -0
  530. /package/dist/types/{init-docs.d.ts → src/build.d.ts} +0 -0
  531. /package/dist/types/{components → src/components}/SunriseAnimation.d.ts +0 -0
  532. /package/dist/types/{components → src/components}/SunriseAnimation.test/implementation.d.ts +0 -0
  533. /package/dist/types/{components → src/components}/SunriseAnimation.test/index.d.ts +0 -0
  534. /package/dist/types/{components → src/components}/SunriseAnimation.test/interface.d.ts +0 -0
  535. /package/dist/types/{components → src/components}/SunriseAnimation.test/specification.d.ts +0 -0
  536. /package/dist/types/{components → src/components}/SunriseAnimation.test/types.d.ts +0 -0
  537. /package/dist/types/{components → src/components}/TestStatusBadge.d.ts +0 -0
  538. /package/dist/types/{components → src/components}/pure/AppFrame.test/implementation.d.ts +0 -0
  539. /package/dist/types/{components → src/components}/pure/AppFrame.test/index.d.ts +0 -0
  540. /package/dist/types/{components → src/components}/pure/AppFrame.test/specification.d.ts +0 -0
  541. /package/dist/types/{components → src/components}/pure/AppFrame.test/types.d.ts +0 -0
  542. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.d.ts +0 -0
  543. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/implementation.d.ts +0 -0
  544. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/index.d.ts +0 -0
  545. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/specification.d.ts +0 -0
  546. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/types.d.ts +0 -0
  547. /package/dist/types/{components → src/components}/pure/ModalContent.d.ts +0 -0
  548. /package/dist/types/{components → src/components}/pure/ModalContent.test/implementation.d.ts +0 -0
  549. /package/dist/types/{components → src/components}/pure/ModalContent.test/specification.d.ts +0 -0
  550. /package/dist/types/{components → src/components}/pure/ModalContent.test/types.d.ts +0 -0
  551. /package/dist/types/{components → src/components}/pure/ProjectPageView.d.ts +0 -0
  552. /package/dist/types/{components → src/components}/pure/ProjectPageView.test/implementation.d.ts +0 -0
  553. /package/dist/types/{components/pure/ModalContent.test → src/components/pure/ProjectPageView.test}/index.d.ts +0 -0
  554. /package/dist/types/{components → src/components}/pure/ProjectPageView.test/specification.d.ts +0 -0
  555. /package/dist/types/{components → src/components}/pure/ProjectPageView.test/types.d.ts +0 -0
  556. /package/dist/types/{PM/layers/base/PM_Base.d.ts → src/components/pure/SingleProcessView.d.ts} +0 -0
  557. /package/dist/types/{components → src/components}/pure/TestPageView.d.ts +0 -0
  558. /package/dist/types/{components → src/components}/pure/TestPageView.test/specification.d.ts +0 -0
  559. /package/dist/types/{components → src/components}/pure/TestPageView.test/types.d.ts +0 -0
  560. /package/dist/types/{components → src/components}/pure/ThemeCard.d.ts +0 -0
  561. /package/dist/types/{components → src/components}/stateful/FeaturesReporter.d.ts +0 -0
  562. /package/dist/types/{components → src/components}/stateful/ProjectPage.d.ts +0 -0
  563. /package/dist/types/{components → src/components}/stateful/ProjectsPage.d.ts +0 -0
  564. /package/dist/types/{components → src/components}/stateful/TestPage.d.ts +0 -0
  565. /package/dist/types/{defaultConfig.d.ts → src/defaultConfig.d.ts} +0 -0
  566. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/consoleDetectorPlugin.d.ts +0 -0
  567. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/eslint-formatter-testeranto.d.ts +0 -0
  568. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/featuresPlugin.d.ts +0 -0
  569. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/index.d.ts +0 -0
  570. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/inputFilesPlugin.d.ts +0 -0
  571. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/nativeImportDetectorPlugin.d.ts +0 -0
  572. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/node.d.ts +0 -0
  573. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/pure.d.ts +0 -0
  574. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/rebuildPlugin.d.ts +0 -0
  575. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/web.d.ts +0 -0
  576. /package/dist/types/{run.d.ts → src/init-docs.d.ts} +0 -0
  577. /package/dist/types/{lib → src/lib}/BaseSuite.d.ts +0 -0
  578. /package/dist/types/{lib → src/lib}/BaseSuite.test/node.test.d.ts +0 -0
  579. /package/dist/types/{lib → src/lib}/BaseSuite.test/pure.test.d.ts +0 -0
  580. /package/dist/types/{lib → src/lib}/BaseSuite.test/test.d.ts +0 -0
  581. /package/dist/types/{lib → src/lib}/BaseSuite.test/web.test.d.ts +0 -0
  582. /package/dist/types/{lib → src/lib}/Sidecar.d.ts +0 -0
  583. /package/dist/types/{lib → src/lib}/abstractBase.d.ts +0 -0
  584. /package/dist/types/{lib → src/lib}/abstractBase.test/MockGiven.d.ts +0 -0
  585. /package/dist/types/{lib → src/lib}/abstractBase.test/MockThen.d.ts +0 -0
  586. /package/dist/types/{lib → src/lib}/abstractBase.test/MockWhen.d.ts +0 -0
  587. /package/dist/types/{lib → src/lib}/abstractBase.test/adapter.d.ts +0 -0
  588. /package/dist/types/{lib → src/lib}/abstractBase.test/implementation.d.ts +0 -0
  589. /package/dist/types/{lib → src/lib}/abstractBase.test/index.d.ts +0 -0
  590. /package/dist/types/{lib → src/lib}/abstractBase.test/specification.d.ts +0 -0
  591. /package/dist/types/{lib → src/lib}/abstractBase.test/types.d.ts +0 -0
  592. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.adapter.d.ts +0 -0
  593. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.implementation.d.ts +0 -0
  594. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.mock.d.ts +0 -0
  595. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.node.d.ts +0 -0
  596. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.pure.d.ts +0 -0
  597. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.specification.d.ts +0 -0
  598. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.types.d.ts +0 -0
  599. /package/dist/types/{lib → src/lib}/baseBuilder.test/baseBuilder.test.web.d.ts +0 -0
  600. /package/dist/types/{lib → src/lib}/classBuilder.d.ts +0 -0
  601. /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.adapter.d.ts +0 -0
  602. /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.d.ts +0 -0
  603. /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.implementation.d.ts +0 -0
  604. /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.specification.d.ts +0 -0
  605. /package/dist/types/{lib → src/lib}/classBuilder.test/classBuilder.test.types.d.ts +0 -0
  606. /package/dist/types/{lib → src/lib}/classBuilder.test/mock.d.ts +0 -0
  607. /package/dist/types/{lib → src/lib}/core.d.ts +0 -0
  608. /package/dist/types/{lib → src/lib}/core.test/MockCore.d.ts +0 -0
  609. /package/dist/types/{lib → src/lib}/core.test/core.test.adapter.d.ts +0 -0
  610. /package/dist/types/{lib → src/lib}/core.test/core.test.d.ts +0 -0
  611. /package/dist/types/{lib → src/lib}/core.test/core.test.implementation.d.ts +0 -0
  612. /package/dist/types/{lib → src/lib}/core.test/core.test.specification.d.ts +0 -0
  613. /package/dist/types/{lib → src/lib}/core.test/core.test.types.d.ts +0 -0
  614. /package/dist/types/{lib → src/lib}/mocks.test.d.ts +0 -0
  615. /package/dist/types/{lib → src/lib}/pmProxy.d.ts +0 -0
  616. /package/dist/types/{lib → src/lib}/pmProxy.test/adapter.d.ts +0 -0
  617. /package/dist/types/{lib → src/lib}/pmProxy.test/implementation.d.ts +0 -0
  618. /package/dist/types/{lib → src/lib}/pmProxy.test/index.d.ts +0 -0
  619. /package/dist/types/{lib → src/lib}/pmProxy.test/mockPM.d.ts +0 -0
  620. /package/dist/types/{lib → src/lib}/pmProxy.test/specification.d.ts +0 -0
  621. /package/dist/types/{lib → src/lib}/pmProxy.test/types.d.ts +0 -0
  622. /package/dist/types/{lib → src/lib}/types.d.ts +0 -0
  623. /package/dist/types/{mothership → src/mothership}/index.d.ts +0 -0
  624. /package/dist/types/{mothership → src/mothership}/test.d.ts +0 -0
  625. /package/dist/types/{types → src/types}/features.d.ts +0 -0
  626. /package/dist/types/{utils → src/utils}/api.d.ts +0 -0
  627. /package/dist/types/{utils → src/utils}/buildTemplates.d.ts +0 -0
  628. /package/dist/types/{utils → src/utils}/featureUtils.d.ts +0 -0
  629. /package/dist/types/{utils → src/utils}/makePrompt.d.ts +0 -0
  630. /package/dist/types/{utils → src/utils}/queue.d.ts +0 -0
  631. /package/dist/types/{utils.d.ts → src/utils.d.ts} +0 -0
  632. /package/dist/types/{web.html.d.ts → src/web.html.d.ts} +0 -0
@@ -0,0 +1,2906 @@
1
+ {
2
+ "errors": [],
3
+ "warnings": [],
4
+ "metafile": {
5
+ "inputs": {
6
+ "dist/cjs-shim.js": {
7
+ "bytes": 502,
8
+ "imports": [
9
+ {
10
+ "path": "node:module",
11
+ "kind": "import-statement",
12
+ "external": true
13
+ },
14
+ {
15
+ "path": "node:path",
16
+ "kind": "import-statement",
17
+ "external": true
18
+ },
19
+ {
20
+ "path": "node:url",
21
+ "kind": "import-statement",
22
+ "external": true
23
+ }
24
+ ],
25
+ "format": "esm"
26
+ },
27
+ "src/lib/index.ts": {
28
+ "bytes": 3739,
29
+ "imports": [
30
+ {
31
+ "path": "../CoreTypes",
32
+ "kind": "import-statement",
33
+ "external": true
34
+ },
35
+ {
36
+ "path": "../PM/node",
37
+ "kind": "import-statement",
38
+ "external": true
39
+ },
40
+ {
41
+ "path": "../PM/pure",
42
+ "kind": "import-statement",
43
+ "external": true
44
+ },
45
+ {
46
+ "path": "../PM/web",
47
+ "kind": "import-statement",
48
+ "external": true
49
+ },
50
+ {
51
+ "path": "../Types",
52
+ "kind": "import-statement",
53
+ "external": true
54
+ },
55
+ {
56
+ "path": "./abstractBase",
57
+ "kind": "import-statement",
58
+ "external": true
59
+ },
60
+ {
61
+ "path": "./BaseSuite",
62
+ "kind": "import-statement",
63
+ "external": true
64
+ },
65
+ {
66
+ "path": "./types",
67
+ "kind": "import-statement",
68
+ "external": true
69
+ },
70
+ {
71
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
72
+ "kind": "import-statement",
73
+ "external": true
74
+ }
75
+ ],
76
+ "format": "esm"
77
+ },
78
+ "src/lib/pmProxy.ts": {
79
+ "bytes": 8407,
80
+ "imports": [
81
+ {
82
+ "path": "./types",
83
+ "kind": "import-statement",
84
+ "external": true
85
+ },
86
+ {
87
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
88
+ "kind": "import-statement",
89
+ "external": true
90
+ }
91
+ ],
92
+ "format": "esm"
93
+ },
94
+ "src/lib/abstractBase.ts": {
95
+ "bytes": 8832,
96
+ "imports": [
97
+ {
98
+ "path": ".",
99
+ "kind": "import-statement",
100
+ "external": true
101
+ },
102
+ {
103
+ "path": "./types.js",
104
+ "kind": "import-statement",
105
+ "external": true
106
+ },
107
+ {
108
+ "path": "src/lib/pmProxy.ts",
109
+ "kind": "import-statement",
110
+ "original": "./pmProxy.js"
111
+ },
112
+ {
113
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
114
+ "kind": "import-statement",
115
+ "external": true
116
+ }
117
+ ],
118
+ "format": "esm"
119
+ },
120
+ "src/lib/basebuilder.ts": {
121
+ "bytes": 4963,
122
+ "imports": [
123
+ {
124
+ "path": "stream",
125
+ "kind": "import-statement",
126
+ "external": true
127
+ },
128
+ {
129
+ "path": ".",
130
+ "kind": "import-statement",
131
+ "external": true
132
+ },
133
+ {
134
+ "path": "./types.js",
135
+ "kind": "import-statement",
136
+ "external": true
137
+ },
138
+ {
139
+ "path": "./abstractBase.js",
140
+ "kind": "import-statement",
141
+ "external": true
142
+ },
143
+ {
144
+ "path": "./BaseSuite",
145
+ "kind": "import-statement",
146
+ "external": true
147
+ },
148
+ {
149
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
150
+ "kind": "import-statement",
151
+ "external": true
152
+ }
153
+ ],
154
+ "format": "esm"
155
+ },
156
+ "src/lib/classBuilder.ts": {
157
+ "bytes": 3021,
158
+ "imports": [
159
+ {
160
+ "path": "type-fest",
161
+ "kind": "import-statement",
162
+ "external": true
163
+ },
164
+ {
165
+ "path": "src/lib/basebuilder.ts",
166
+ "kind": "import-statement",
167
+ "original": "./basebuilder.js"
168
+ },
169
+ {
170
+ "path": "./types.js",
171
+ "kind": "import-statement",
172
+ "external": true
173
+ },
174
+ {
175
+ "path": "./index.js",
176
+ "kind": "import-statement",
177
+ "external": true
178
+ },
179
+ {
180
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
181
+ "kind": "import-statement",
182
+ "external": true
183
+ }
184
+ ],
185
+ "format": "esm"
186
+ },
187
+ "src/lib/BaseSuite.ts": {
188
+ "bytes": 4006,
189
+ "imports": [
190
+ {
191
+ "path": ".",
192
+ "kind": "import-statement",
193
+ "external": true
194
+ },
195
+ {
196
+ "path": "../CoreTypes",
197
+ "kind": "import-statement",
198
+ "external": true
199
+ },
200
+ {
201
+ "path": "./abstractBase",
202
+ "kind": "import-statement",
203
+ "external": true
204
+ },
205
+ {
206
+ "path": "src/lib/pmProxy.ts",
207
+ "kind": "import-statement",
208
+ "original": "./pmProxy"
209
+ },
210
+ {
211
+ "path": "./types",
212
+ "kind": "import-statement",
213
+ "external": true
214
+ },
215
+ {
216
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
217
+ "kind": "import-statement",
218
+ "external": true
219
+ }
220
+ ],
221
+ "format": "esm"
222
+ },
223
+ "src/lib/core.ts": {
224
+ "bytes": 3302,
225
+ "imports": [
226
+ {
227
+ "path": "src/lib/index.ts",
228
+ "kind": "import-statement",
229
+ "original": "./index.js"
230
+ },
231
+ {
232
+ "path": "src/lib/abstractBase.ts",
233
+ "kind": "import-statement",
234
+ "original": "./abstractBase.js"
235
+ },
236
+ {
237
+ "path": "src/lib/classBuilder.ts",
238
+ "kind": "import-statement",
239
+ "original": "./classBuilder.js"
240
+ },
241
+ {
242
+ "path": "./types",
243
+ "kind": "import-statement",
244
+ "external": true
245
+ },
246
+ {
247
+ "path": "src/lib/BaseSuite.ts",
248
+ "kind": "import-statement",
249
+ "original": "./BaseSuite.js"
250
+ },
251
+ {
252
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
253
+ "kind": "import-statement",
254
+ "external": true
255
+ }
256
+ ],
257
+ "format": "esm"
258
+ },
259
+ "src/PM/index.ts": {
260
+ "bytes": 1856,
261
+ "imports": [
262
+ {
263
+ "path": "puppeteer-core",
264
+ "kind": "import-statement",
265
+ "external": true
266
+ },
267
+ {
268
+ "path": "puppeteer-core/lib/esm/puppeteer",
269
+ "kind": "import-statement",
270
+ "external": true
271
+ },
272
+ {
273
+ "path": "../lib",
274
+ "kind": "import-statement",
275
+ "external": true
276
+ },
277
+ {
278
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
279
+ "kind": "import-statement",
280
+ "external": true
281
+ }
282
+ ],
283
+ "format": "esm"
284
+ },
285
+ "src/PM/node.ts": {
286
+ "bytes": 7085,
287
+ "imports": [
288
+ {
289
+ "path": "net",
290
+ "kind": "import-statement",
291
+ "external": true
292
+ },
293
+ {
294
+ "path": "fs",
295
+ "kind": "import-statement",
296
+ "external": true
297
+ },
298
+ {
299
+ "path": "path",
300
+ "kind": "import-statement",
301
+ "external": true
302
+ },
303
+ {
304
+ "path": "puppeteer-core",
305
+ "kind": "import-statement",
306
+ "external": true
307
+ },
308
+ {
309
+ "path": "stream",
310
+ "kind": "import-statement",
311
+ "external": true
312
+ },
313
+ {
314
+ "path": "../lib",
315
+ "kind": "import-statement",
316
+ "external": true
317
+ },
318
+ {
319
+ "path": "src/PM/index.ts",
320
+ "kind": "import-statement",
321
+ "original": "."
322
+ },
323
+ {
324
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
325
+ "kind": "import-statement",
326
+ "external": true
327
+ }
328
+ ],
329
+ "format": "esm"
330
+ },
331
+ "src/Node.ts": {
332
+ "bytes": 2079,
333
+ "imports": [
334
+ {
335
+ "path": "src/lib/core.ts",
336
+ "kind": "import-statement",
337
+ "original": "./lib/core.js"
338
+ },
339
+ {
340
+ "path": "src/lib/index.ts",
341
+ "kind": "import-statement",
342
+ "original": "./lib/index.js"
343
+ },
344
+ {
345
+ "path": "src/PM/node.ts",
346
+ "kind": "import-statement",
347
+ "original": "./PM/node.js"
348
+ },
349
+ {
350
+ "path": "./CoreTypes.js",
351
+ "kind": "import-statement",
352
+ "external": true
353
+ },
354
+ {
355
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
356
+ "kind": "import-statement",
357
+ "external": true
358
+ }
359
+ ],
360
+ "format": "esm"
361
+ },
362
+ "src/lib/BaseSuite.test/mock.ts": {
363
+ "bytes": 2307,
364
+ "imports": [
365
+ {
366
+ "path": "src/lib/abstractBase.ts",
367
+ "kind": "import-statement",
368
+ "original": "../abstractBase"
369
+ },
370
+ {
371
+ "path": "src/lib/BaseSuite.ts",
372
+ "kind": "import-statement",
373
+ "original": "../BaseSuite"
374
+ },
375
+ {
376
+ "path": "../types",
377
+ "kind": "import-statement",
378
+ "external": true
379
+ },
380
+ {
381
+ "path": "./test",
382
+ "kind": "import-statement",
383
+ "external": true
384
+ },
385
+ {
386
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
387
+ "kind": "import-statement",
388
+ "external": true
389
+ }
390
+ ],
391
+ "format": "esm"
392
+ },
393
+ "src/lib/BaseSuite.test/test.ts": {
394
+ "bytes": 12087,
395
+ "imports": [
396
+ {
397
+ "path": "..",
398
+ "kind": "import-statement",
399
+ "external": true
400
+ },
401
+ {
402
+ "path": "../../CoreTypes",
403
+ "kind": "import-statement",
404
+ "external": true
405
+ },
406
+ {
407
+ "path": "../BaseSuite",
408
+ "kind": "import-statement",
409
+ "external": true
410
+ },
411
+ {
412
+ "path": "../types",
413
+ "kind": "import-statement",
414
+ "external": true
415
+ },
416
+ {
417
+ "path": "src/lib/BaseSuite.test/mock.ts",
418
+ "kind": "import-statement",
419
+ "original": "./mock"
420
+ },
421
+ {
422
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
423
+ "kind": "import-statement",
424
+ "external": true
425
+ }
426
+ ],
427
+ "format": "esm"
428
+ },
429
+ "src/lib/BaseSuite.test/node.test.ts": {
430
+ "bytes": 320,
431
+ "imports": [
432
+ {
433
+ "path": "src/Node.ts",
434
+ "kind": "import-statement",
435
+ "original": "../../Node"
436
+ },
437
+ {
438
+ "path": "src/lib/BaseSuite.ts",
439
+ "kind": "import-statement",
440
+ "original": "../BaseSuite"
441
+ },
442
+ {
443
+ "path": "src/lib/BaseSuite.test/test.ts",
444
+ "kind": "import-statement",
445
+ "original": "./test"
446
+ },
447
+ {
448
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
449
+ "kind": "import-statement",
450
+ "external": true
451
+ }
452
+ ],
453
+ "format": "esm"
454
+ },
455
+ "src/lib/pmProxy.test/mockPMBase.ts": {
456
+ "bytes": 4372,
457
+ "imports": [
458
+ {
459
+ "path": "puppeteer-core",
460
+ "kind": "import-statement",
461
+ "external": true
462
+ },
463
+ {
464
+ "path": "../index",
465
+ "kind": "import-statement",
466
+ "external": true
467
+ },
468
+ {
469
+ "path": "../../PM/base",
470
+ "kind": "import-statement",
471
+ "external": true
472
+ },
473
+ {
474
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
475
+ "kind": "import-statement",
476
+ "external": true
477
+ }
478
+ ],
479
+ "format": "esm"
480
+ },
481
+ "src/lib/pmProxy.test/implementation.ts": {
482
+ "bytes": 6180,
483
+ "imports": [
484
+ {
485
+ "path": "../../CoreTypes",
486
+ "kind": "import-statement",
487
+ "external": true
488
+ },
489
+ {
490
+ "path": "../types",
491
+ "kind": "import-statement",
492
+ "external": true
493
+ },
494
+ {
495
+ "path": "../pmProxy",
496
+ "kind": "import-statement",
497
+ "external": true
498
+ },
499
+ {
500
+ "path": "./types",
501
+ "kind": "import-statement",
502
+ "external": true
503
+ },
504
+ {
505
+ "path": "src/lib/pmProxy.test/mockPMBase.ts",
506
+ "kind": "import-statement",
507
+ "original": "./mockPMBase"
508
+ },
509
+ {
510
+ "path": "src/lib/pmProxy.ts",
511
+ "kind": "import-statement",
512
+ "original": "../pmProxy"
513
+ },
514
+ {
515
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
516
+ "kind": "import-statement",
517
+ "external": true
518
+ }
519
+ ],
520
+ "format": "esm"
521
+ },
522
+ "src/lib/pmProxy.test/specification.ts": {
523
+ "bytes": 4899,
524
+ "imports": [
525
+ {
526
+ "path": "../../CoreTypes",
527
+ "kind": "import-statement",
528
+ "external": true
529
+ },
530
+ {
531
+ "path": "./types",
532
+ "kind": "import-statement",
533
+ "external": true
534
+ },
535
+ {
536
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
537
+ "kind": "import-statement",
538
+ "external": true
539
+ }
540
+ ],
541
+ "format": "esm"
542
+ },
543
+ "node_modules/check-error/index.js": {
544
+ "bytes": 4293,
545
+ "imports": [
546
+ {
547
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
548
+ "kind": "import-statement",
549
+ "external": true
550
+ }
551
+ ],
552
+ "format": "esm"
553
+ },
554
+ "node_modules/chai/lib/chai/utils/flag.js": {
555
+ "bytes": 881,
556
+ "imports": [
557
+ {
558
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
559
+ "kind": "import-statement",
560
+ "external": true
561
+ }
562
+ ],
563
+ "format": "esm"
564
+ },
565
+ "node_modules/chai/lib/chai/utils/test.js": {
566
+ "bytes": 477,
567
+ "imports": [
568
+ {
569
+ "path": "node_modules/chai/lib/chai/utils/flag.js",
570
+ "kind": "import-statement",
571
+ "original": "./flag.js"
572
+ },
573
+ {
574
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
575
+ "kind": "import-statement",
576
+ "external": true
577
+ }
578
+ ],
579
+ "format": "esm"
580
+ },
581
+ "node_modules/chai/lib/chai/utils/type-detect.js": {
582
+ "bytes": 384,
583
+ "imports": [
584
+ {
585
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
586
+ "kind": "import-statement",
587
+ "external": true
588
+ }
589
+ ],
590
+ "format": "esm"
591
+ },
592
+ "node_modules/assertion-error/index.js": {
593
+ "bytes": 1436,
594
+ "imports": [
595
+ {
596
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
597
+ "kind": "import-statement",
598
+ "external": true
599
+ }
600
+ ],
601
+ "format": "esm"
602
+ },
603
+ "node_modules/chai/lib/chai/utils/expectTypes.js": {
604
+ "bytes": 1465,
605
+ "imports": [
606
+ {
607
+ "path": "node_modules/assertion-error/index.js",
608
+ "kind": "import-statement",
609
+ "original": "assertion-error"
610
+ },
611
+ {
612
+ "path": "node_modules/chai/lib/chai/utils/flag.js",
613
+ "kind": "import-statement",
614
+ "original": "./flag.js"
615
+ },
616
+ {
617
+ "path": "node_modules/chai/lib/chai/utils/type-detect.js",
618
+ "kind": "import-statement",
619
+ "original": "./type-detect.js"
620
+ },
621
+ {
622
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
623
+ "kind": "import-statement",
624
+ "external": true
625
+ }
626
+ ],
627
+ "format": "esm"
628
+ },
629
+ "node_modules/chai/lib/chai/utils/getActual.js": {
630
+ "bytes": 484,
631
+ "imports": [
632
+ {
633
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
634
+ "kind": "import-statement",
635
+ "external": true
636
+ }
637
+ ],
638
+ "format": "esm"
639
+ },
640
+ "node_modules/loupe/lib/helpers.js": {
641
+ "bytes": 5596,
642
+ "imports": [
643
+ {
644
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
645
+ "kind": "import-statement",
646
+ "external": true
647
+ }
648
+ ],
649
+ "format": "esm"
650
+ },
651
+ "node_modules/loupe/lib/array.js": {
652
+ "bytes": 795,
653
+ "imports": [
654
+ {
655
+ "path": "node_modules/loupe/lib/helpers.js",
656
+ "kind": "import-statement",
657
+ "original": "./helpers.js"
658
+ },
659
+ {
660
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
661
+ "kind": "import-statement",
662
+ "external": true
663
+ }
664
+ ],
665
+ "format": "esm"
666
+ },
667
+ "node_modules/loupe/lib/typedarray.js": {
668
+ "bytes": 1719,
669
+ "imports": [
670
+ {
671
+ "path": "node_modules/loupe/lib/helpers.js",
672
+ "kind": "import-statement",
673
+ "original": "./helpers.js"
674
+ },
675
+ {
676
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
677
+ "kind": "import-statement",
678
+ "external": true
679
+ }
680
+ ],
681
+ "format": "esm"
682
+ },
683
+ "node_modules/loupe/lib/date.js": {
684
+ "bytes": 486,
685
+ "imports": [
686
+ {
687
+ "path": "node_modules/loupe/lib/helpers.js",
688
+ "kind": "import-statement",
689
+ "original": "./helpers.js"
690
+ },
691
+ {
692
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
693
+ "kind": "import-statement",
694
+ "external": true
695
+ }
696
+ ],
697
+ "format": "esm"
698
+ },
699
+ "node_modules/loupe/lib/function.js": {
700
+ "bytes": 381,
701
+ "imports": [
702
+ {
703
+ "path": "node_modules/loupe/lib/helpers.js",
704
+ "kind": "import-statement",
705
+ "original": "./helpers.js"
706
+ },
707
+ {
708
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
709
+ "kind": "import-statement",
710
+ "external": true
711
+ }
712
+ ],
713
+ "format": "esm"
714
+ },
715
+ "node_modules/loupe/lib/map.js": {
716
+ "bytes": 680,
717
+ "imports": [
718
+ {
719
+ "path": "node_modules/loupe/lib/helpers.js",
720
+ "kind": "import-statement",
721
+ "original": "./helpers.js"
722
+ },
723
+ {
724
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
725
+ "kind": "import-statement",
726
+ "external": true
727
+ }
728
+ ],
729
+ "format": "esm"
730
+ },
731
+ "node_modules/loupe/lib/number.js": {
732
+ "bytes": 642,
733
+ "imports": [
734
+ {
735
+ "path": "node_modules/loupe/lib/helpers.js",
736
+ "kind": "import-statement",
737
+ "original": "./helpers.js"
738
+ },
739
+ {
740
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
741
+ "kind": "import-statement",
742
+ "external": true
743
+ }
744
+ ],
745
+ "format": "esm"
746
+ },
747
+ "node_modules/loupe/lib/bigint.js": {
748
+ "bytes": 270,
749
+ "imports": [
750
+ {
751
+ "path": "node_modules/loupe/lib/helpers.js",
752
+ "kind": "import-statement",
753
+ "original": "./helpers.js"
754
+ },
755
+ {
756
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
757
+ "kind": "import-statement",
758
+ "external": true
759
+ }
760
+ ],
761
+ "format": "esm"
762
+ },
763
+ "node_modules/loupe/lib/regexp.js": {
764
+ "bytes": 331,
765
+ "imports": [
766
+ {
767
+ "path": "node_modules/loupe/lib/helpers.js",
768
+ "kind": "import-statement",
769
+ "original": "./helpers.js"
770
+ },
771
+ {
772
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
773
+ "kind": "import-statement",
774
+ "external": true
775
+ }
776
+ ],
777
+ "format": "esm"
778
+ },
779
+ "node_modules/loupe/lib/set.js": {
780
+ "bytes": 414,
781
+ "imports": [
782
+ {
783
+ "path": "node_modules/loupe/lib/helpers.js",
784
+ "kind": "import-statement",
785
+ "original": "./helpers.js"
786
+ },
787
+ {
788
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
789
+ "kind": "import-statement",
790
+ "external": true
791
+ }
792
+ ],
793
+ "format": "esm"
794
+ },
795
+ "node_modules/loupe/lib/string.js": {
796
+ "bytes": 828,
797
+ "imports": [
798
+ {
799
+ "path": "node_modules/loupe/lib/helpers.js",
800
+ "kind": "import-statement",
801
+ "original": "./helpers.js"
802
+ },
803
+ {
804
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
805
+ "kind": "import-statement",
806
+ "external": true
807
+ }
808
+ ],
809
+ "format": "esm"
810
+ },
811
+ "node_modules/loupe/lib/symbol.js": {
812
+ "bytes": 209,
813
+ "imports": [
814
+ {
815
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
816
+ "kind": "import-statement",
817
+ "external": true
818
+ }
819
+ ],
820
+ "format": "esm"
821
+ },
822
+ "node_modules/loupe/lib/promise.js": {
823
+ "bytes": 78,
824
+ "imports": [
825
+ {
826
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
827
+ "kind": "import-statement",
828
+ "external": true
829
+ }
830
+ ],
831
+ "format": "esm"
832
+ },
833
+ "node_modules/loupe/lib/object.js": {
834
+ "bytes": 924,
835
+ "imports": [
836
+ {
837
+ "path": "node_modules/loupe/lib/helpers.js",
838
+ "kind": "import-statement",
839
+ "original": "./helpers.js"
840
+ },
841
+ {
842
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
843
+ "kind": "import-statement",
844
+ "external": true
845
+ }
846
+ ],
847
+ "format": "esm"
848
+ },
849
+ "node_modules/loupe/lib/class.js": {
850
+ "bytes": 584,
851
+ "imports": [
852
+ {
853
+ "path": "node_modules/loupe/lib/object.js",
854
+ "kind": "import-statement",
855
+ "original": "./object.js"
856
+ },
857
+ {
858
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
859
+ "kind": "import-statement",
860
+ "external": true
861
+ }
862
+ ],
863
+ "format": "esm"
864
+ },
865
+ "node_modules/loupe/lib/arguments.js": {
866
+ "bytes": 246,
867
+ "imports": [
868
+ {
869
+ "path": "node_modules/loupe/lib/helpers.js",
870
+ "kind": "import-statement",
871
+ "original": "./helpers.js"
872
+ },
873
+ {
874
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
875
+ "kind": "import-statement",
876
+ "external": true
877
+ }
878
+ ],
879
+ "format": "esm"
880
+ },
881
+ "node_modules/loupe/lib/error.js": {
882
+ "bytes": 1105,
883
+ "imports": [
884
+ {
885
+ "path": "node_modules/loupe/lib/helpers.js",
886
+ "kind": "import-statement",
887
+ "original": "./helpers.js"
888
+ },
889
+ {
890
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
891
+ "kind": "import-statement",
892
+ "external": true
893
+ }
894
+ ],
895
+ "format": "esm"
896
+ },
897
+ "node_modules/loupe/lib/html.js": {
898
+ "bytes": 1735,
899
+ "imports": [
900
+ {
901
+ "path": "node_modules/loupe/lib/helpers.js",
902
+ "kind": "import-statement",
903
+ "original": "./helpers.js"
904
+ },
905
+ {
906
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
907
+ "kind": "import-statement",
908
+ "external": true
909
+ }
910
+ ],
911
+ "format": "esm"
912
+ },
913
+ "node_modules/loupe/lib/index.js": {
914
+ "bytes": 5847,
915
+ "imports": [
916
+ {
917
+ "path": "node_modules/loupe/lib/array.js",
918
+ "kind": "import-statement",
919
+ "original": "./array.js"
920
+ },
921
+ {
922
+ "path": "node_modules/loupe/lib/typedarray.js",
923
+ "kind": "import-statement",
924
+ "original": "./typedarray.js"
925
+ },
926
+ {
927
+ "path": "node_modules/loupe/lib/date.js",
928
+ "kind": "import-statement",
929
+ "original": "./date.js"
930
+ },
931
+ {
932
+ "path": "node_modules/loupe/lib/function.js",
933
+ "kind": "import-statement",
934
+ "original": "./function.js"
935
+ },
936
+ {
937
+ "path": "node_modules/loupe/lib/map.js",
938
+ "kind": "import-statement",
939
+ "original": "./map.js"
940
+ },
941
+ {
942
+ "path": "node_modules/loupe/lib/number.js",
943
+ "kind": "import-statement",
944
+ "original": "./number.js"
945
+ },
946
+ {
947
+ "path": "node_modules/loupe/lib/bigint.js",
948
+ "kind": "import-statement",
949
+ "original": "./bigint.js"
950
+ },
951
+ {
952
+ "path": "node_modules/loupe/lib/regexp.js",
953
+ "kind": "import-statement",
954
+ "original": "./regexp.js"
955
+ },
956
+ {
957
+ "path": "node_modules/loupe/lib/set.js",
958
+ "kind": "import-statement",
959
+ "original": "./set.js"
960
+ },
961
+ {
962
+ "path": "node_modules/loupe/lib/string.js",
963
+ "kind": "import-statement",
964
+ "original": "./string.js"
965
+ },
966
+ {
967
+ "path": "node_modules/loupe/lib/symbol.js",
968
+ "kind": "import-statement",
969
+ "original": "./symbol.js"
970
+ },
971
+ {
972
+ "path": "node_modules/loupe/lib/promise.js",
973
+ "kind": "import-statement",
974
+ "original": "./promise.js"
975
+ },
976
+ {
977
+ "path": "node_modules/loupe/lib/class.js",
978
+ "kind": "import-statement",
979
+ "original": "./class.js"
980
+ },
981
+ {
982
+ "path": "node_modules/loupe/lib/object.js",
983
+ "kind": "import-statement",
984
+ "original": "./object.js"
985
+ },
986
+ {
987
+ "path": "node_modules/loupe/lib/arguments.js",
988
+ "kind": "import-statement",
989
+ "original": "./arguments.js"
990
+ },
991
+ {
992
+ "path": "node_modules/loupe/lib/error.js",
993
+ "kind": "import-statement",
994
+ "original": "./error.js"
995
+ },
996
+ {
997
+ "path": "node_modules/loupe/lib/html.js",
998
+ "kind": "import-statement",
999
+ "original": "./html.js"
1000
+ },
1001
+ {
1002
+ "path": "node_modules/loupe/lib/helpers.js",
1003
+ "kind": "import-statement",
1004
+ "original": "./helpers.js"
1005
+ },
1006
+ {
1007
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1008
+ "kind": "import-statement",
1009
+ "external": true
1010
+ }
1011
+ ],
1012
+ "format": "esm"
1013
+ },
1014
+ "node_modules/chai/lib/chai/config.js": {
1015
+ "bytes": 3785,
1016
+ "imports": [
1017
+ {
1018
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1019
+ "kind": "import-statement",
1020
+ "external": true
1021
+ }
1022
+ ],
1023
+ "format": "esm"
1024
+ },
1025
+ "node_modules/chai/lib/chai/utils/inspect.js": {
1026
+ "bytes": 1120,
1027
+ "imports": [
1028
+ {
1029
+ "path": "node_modules/loupe/lib/index.js",
1030
+ "kind": "import-statement",
1031
+ "original": "loupe"
1032
+ },
1033
+ {
1034
+ "path": "node_modules/chai/lib/chai/config.js",
1035
+ "kind": "import-statement",
1036
+ "original": "../config.js"
1037
+ },
1038
+ {
1039
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1040
+ "kind": "import-statement",
1041
+ "external": true
1042
+ }
1043
+ ],
1044
+ "format": "esm"
1045
+ },
1046
+ "node_modules/chai/lib/chai/utils/objDisplay.js": {
1047
+ "bytes": 1240,
1048
+ "imports": [
1049
+ {
1050
+ "path": "node_modules/chai/lib/chai/utils/inspect.js",
1051
+ "kind": "import-statement",
1052
+ "original": "./inspect.js"
1053
+ },
1054
+ {
1055
+ "path": "node_modules/chai/lib/chai/config.js",
1056
+ "kind": "import-statement",
1057
+ "original": "../config.js"
1058
+ },
1059
+ {
1060
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1061
+ "kind": "import-statement",
1062
+ "external": true
1063
+ }
1064
+ ],
1065
+ "format": "esm"
1066
+ },
1067
+ "node_modules/chai/lib/chai/utils/getMessage.js": {
1068
+ "bytes": 1397,
1069
+ "imports": [
1070
+ {
1071
+ "path": "node_modules/chai/lib/chai/utils/flag.js",
1072
+ "kind": "import-statement",
1073
+ "original": "./flag.js"
1074
+ },
1075
+ {
1076
+ "path": "node_modules/chai/lib/chai/utils/getActual.js",
1077
+ "kind": "import-statement",
1078
+ "original": "./getActual.js"
1079
+ },
1080
+ {
1081
+ "path": "node_modules/chai/lib/chai/utils/objDisplay.js",
1082
+ "kind": "import-statement",
1083
+ "original": "./objDisplay.js"
1084
+ },
1085
+ {
1086
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1087
+ "kind": "import-statement",
1088
+ "external": true
1089
+ }
1090
+ ],
1091
+ "format": "esm"
1092
+ },
1093
+ "node_modules/chai/lib/chai/utils/transferFlags.js": {
1094
+ "bytes": 1402,
1095
+ "imports": [
1096
+ {
1097
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1098
+ "kind": "import-statement",
1099
+ "external": true
1100
+ }
1101
+ ],
1102
+ "format": "esm"
1103
+ },
1104
+ "node_modules/deep-eql/index.js": {
1105
+ "bytes": 16662,
1106
+ "imports": [
1107
+ {
1108
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1109
+ "kind": "import-statement",
1110
+ "external": true
1111
+ }
1112
+ ],
1113
+ "format": "esm"
1114
+ },
1115
+ "node_modules/pathval/index.js": {
1116
+ "bytes": 7690,
1117
+ "imports": [
1118
+ {
1119
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1120
+ "kind": "import-statement",
1121
+ "external": true
1122
+ }
1123
+ ],
1124
+ "format": "esm"
1125
+ },
1126
+ "node_modules/chai/lib/chai/assertion.js": {
1127
+ "bytes": 6525,
1128
+ "imports": [
1129
+ {
1130
+ "path": "node_modules/chai/lib/chai/config.js",
1131
+ "kind": "import-statement",
1132
+ "original": "./config.js"
1133
+ },
1134
+ {
1135
+ "path": "node_modules/assertion-error/index.js",
1136
+ "kind": "import-statement",
1137
+ "original": "assertion-error"
1138
+ },
1139
+ {
1140
+ "path": "node_modules/chai/lib/chai/utils/index.js",
1141
+ "kind": "import-statement",
1142
+ "original": "./utils/index.js"
1143
+ },
1144
+ {
1145
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1146
+ "kind": "import-statement",
1147
+ "external": true
1148
+ }
1149
+ ],
1150
+ "format": "esm"
1151
+ },
1152
+ "node_modules/chai/lib/chai/utils/isProxyEnabled.js": {
1153
+ "bytes": 601,
1154
+ "imports": [
1155
+ {
1156
+ "path": "node_modules/chai/lib/chai/config.js",
1157
+ "kind": "import-statement",
1158
+ "original": "../config.js"
1159
+ },
1160
+ {
1161
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1162
+ "kind": "import-statement",
1163
+ "external": true
1164
+ }
1165
+ ],
1166
+ "format": "esm"
1167
+ },
1168
+ "node_modules/chai/lib/chai/utils/addProperty.js": {
1169
+ "bytes": 2391,
1170
+ "imports": [
1171
+ {
1172
+ "path": "node_modules/chai/lib/chai/assertion.js",
1173
+ "kind": "import-statement",
1174
+ "original": "../assertion.js"
1175
+ },
1176
+ {
1177
+ "path": "node_modules/chai/lib/chai/utils/flag.js",
1178
+ "kind": "import-statement",
1179
+ "original": "./flag.js"
1180
+ },
1181
+ {
1182
+ "path": "node_modules/chai/lib/chai/utils/isProxyEnabled.js",
1183
+ "kind": "import-statement",
1184
+ "original": "./isProxyEnabled.js"
1185
+ },
1186
+ {
1187
+ "path": "node_modules/chai/lib/chai/utils/transferFlags.js",
1188
+ "kind": "import-statement",
1189
+ "original": "./transferFlags.js"
1190
+ },
1191
+ {
1192
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1193
+ "kind": "import-statement",
1194
+ "external": true
1195
+ }
1196
+ ],
1197
+ "format": "esm"
1198
+ },
1199
+ "node_modules/chai/lib/chai/utils/addLengthGuard.js": {
1200
+ "bytes": 2529,
1201
+ "imports": [
1202
+ {
1203
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1204
+ "kind": "import-statement",
1205
+ "external": true
1206
+ }
1207
+ ],
1208
+ "format": "esm"
1209
+ },
1210
+ "node_modules/chai/lib/chai/utils/getProperties.js": {
1211
+ "bytes": 816,
1212
+ "imports": [
1213
+ {
1214
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1215
+ "kind": "import-statement",
1216
+ "external": true
1217
+ }
1218
+ ],
1219
+ "format": "esm"
1220
+ },
1221
+ "node_modules/chai/lib/chai/utils/proxify.js": {
1222
+ "bytes": 5493,
1223
+ "imports": [
1224
+ {
1225
+ "path": "node_modules/chai/lib/chai/config.js",
1226
+ "kind": "import-statement",
1227
+ "original": "../config.js"
1228
+ },
1229
+ {
1230
+ "path": "node_modules/chai/lib/chai/utils/flag.js",
1231
+ "kind": "import-statement",
1232
+ "original": "./flag.js"
1233
+ },
1234
+ {
1235
+ "path": "node_modules/chai/lib/chai/utils/getProperties.js",
1236
+ "kind": "import-statement",
1237
+ "original": "./getProperties.js"
1238
+ },
1239
+ {
1240
+ "path": "node_modules/chai/lib/chai/utils/isProxyEnabled.js",
1241
+ "kind": "import-statement",
1242
+ "original": "./isProxyEnabled.js"
1243
+ },
1244
+ {
1245
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1246
+ "kind": "import-statement",
1247
+ "external": true
1248
+ }
1249
+ ],
1250
+ "format": "esm"
1251
+ },
1252
+ "node_modules/chai/lib/chai/utils/addMethod.js": {
1253
+ "bytes": 2173,
1254
+ "imports": [
1255
+ {
1256
+ "path": "node_modules/chai/lib/chai/utils/addLengthGuard.js",
1257
+ "kind": "import-statement",
1258
+ "original": "./addLengthGuard.js"
1259
+ },
1260
+ {
1261
+ "path": "node_modules/chai/lib/chai/utils/flag.js",
1262
+ "kind": "import-statement",
1263
+ "original": "./flag.js"
1264
+ },
1265
+ {
1266
+ "path": "node_modules/chai/lib/chai/utils/proxify.js",
1267
+ "kind": "import-statement",
1268
+ "original": "./proxify.js"
1269
+ },
1270
+ {
1271
+ "path": "node_modules/chai/lib/chai/utils/transferFlags.js",
1272
+ "kind": "import-statement",
1273
+ "original": "./transferFlags.js"
1274
+ },
1275
+ {
1276
+ "path": "node_modules/chai/lib/chai/assertion.js",
1277
+ "kind": "import-statement",
1278
+ "original": "../assertion.js"
1279
+ },
1280
+ {
1281
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1282
+ "kind": "import-statement",
1283
+ "external": true
1284
+ }
1285
+ ],
1286
+ "format": "esm"
1287
+ },
1288
+ "node_modules/chai/lib/chai/utils/overwriteProperty.js": {
1289
+ "bytes": 3235,
1290
+ "imports": [
1291
+ {
1292
+ "path": "node_modules/chai/lib/chai/assertion.js",
1293
+ "kind": "import-statement",
1294
+ "original": "../assertion.js"
1295
+ },
1296
+ {
1297
+ "path": "node_modules/chai/lib/chai/utils/flag.js",
1298
+ "kind": "import-statement",
1299
+ "original": "./flag.js"
1300
+ },
1301
+ {
1302
+ "path": "node_modules/chai/lib/chai/utils/isProxyEnabled.js",
1303
+ "kind": "import-statement",
1304
+ "original": "./isProxyEnabled.js"
1305
+ },
1306
+ {
1307
+ "path": "node_modules/chai/lib/chai/utils/transferFlags.js",
1308
+ "kind": "import-statement",
1309
+ "original": "./transferFlags.js"
1310
+ },
1311
+ {
1312
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1313
+ "kind": "import-statement",
1314
+ "external": true
1315
+ }
1316
+ ],
1317
+ "format": "esm"
1318
+ },
1319
+ "node_modules/chai/lib/chai/utils/overwriteMethod.js": {
1320
+ "bytes": 3124,
1321
+ "imports": [
1322
+ {
1323
+ "path": "node_modules/chai/lib/chai/assertion.js",
1324
+ "kind": "import-statement",
1325
+ "original": "../assertion.js"
1326
+ },
1327
+ {
1328
+ "path": "node_modules/chai/lib/chai/utils/addLengthGuard.js",
1329
+ "kind": "import-statement",
1330
+ "original": "./addLengthGuard.js"
1331
+ },
1332
+ {
1333
+ "path": "node_modules/chai/lib/chai/utils/flag.js",
1334
+ "kind": "import-statement",
1335
+ "original": "./flag.js"
1336
+ },
1337
+ {
1338
+ "path": "node_modules/chai/lib/chai/utils/proxify.js",
1339
+ "kind": "import-statement",
1340
+ "original": "./proxify.js"
1341
+ },
1342
+ {
1343
+ "path": "node_modules/chai/lib/chai/utils/transferFlags.js",
1344
+ "kind": "import-statement",
1345
+ "original": "./transferFlags.js"
1346
+ },
1347
+ {
1348
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1349
+ "kind": "import-statement",
1350
+ "external": true
1351
+ }
1352
+ ],
1353
+ "format": "esm"
1354
+ },
1355
+ "node_modules/chai/lib/chai/utils/addChainableMethod.js": {
1356
+ "bytes": 5302,
1357
+ "imports": [
1358
+ {
1359
+ "path": "node_modules/chai/lib/chai/assertion.js",
1360
+ "kind": "import-statement",
1361
+ "original": "../assertion.js"
1362
+ },
1363
+ {
1364
+ "path": "node_modules/chai/lib/chai/utils/addLengthGuard.js",
1365
+ "kind": "import-statement",
1366
+ "original": "./addLengthGuard.js"
1367
+ },
1368
+ {
1369
+ "path": "node_modules/chai/lib/chai/utils/flag.js",
1370
+ "kind": "import-statement",
1371
+ "original": "./flag.js"
1372
+ },
1373
+ {
1374
+ "path": "node_modules/chai/lib/chai/utils/proxify.js",
1375
+ "kind": "import-statement",
1376
+ "original": "./proxify.js"
1377
+ },
1378
+ {
1379
+ "path": "node_modules/chai/lib/chai/utils/transferFlags.js",
1380
+ "kind": "import-statement",
1381
+ "original": "./transferFlags.js"
1382
+ },
1383
+ {
1384
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1385
+ "kind": "import-statement",
1386
+ "external": true
1387
+ }
1388
+ ],
1389
+ "format": "esm"
1390
+ },
1391
+ "node_modules/chai/lib/chai/utils/overwriteChainableMethod.js": {
1392
+ "bytes": 2165,
1393
+ "imports": [
1394
+ {
1395
+ "path": "node_modules/chai/lib/chai/assertion.js",
1396
+ "kind": "import-statement",
1397
+ "original": "../assertion.js"
1398
+ },
1399
+ {
1400
+ "path": "node_modules/chai/lib/chai/utils/transferFlags.js",
1401
+ "kind": "import-statement",
1402
+ "original": "./transferFlags.js"
1403
+ },
1404
+ {
1405
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1406
+ "kind": "import-statement",
1407
+ "external": true
1408
+ }
1409
+ ],
1410
+ "format": "esm"
1411
+ },
1412
+ "node_modules/chai/lib/chai/utils/compareByInspect.js": {
1413
+ "bytes": 770,
1414
+ "imports": [
1415
+ {
1416
+ "path": "node_modules/chai/lib/chai/utils/inspect.js",
1417
+ "kind": "import-statement",
1418
+ "original": "./inspect.js"
1419
+ },
1420
+ {
1421
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1422
+ "kind": "import-statement",
1423
+ "external": true
1424
+ }
1425
+ ],
1426
+ "format": "esm"
1427
+ },
1428
+ "node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js": {
1429
+ "bytes": 800,
1430
+ "imports": [
1431
+ {
1432
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1433
+ "kind": "import-statement",
1434
+ "external": true
1435
+ }
1436
+ ],
1437
+ "format": "esm"
1438
+ },
1439
+ "node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js": {
1440
+ "bytes": 736,
1441
+ "imports": [
1442
+ {
1443
+ "path": "node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js",
1444
+ "kind": "import-statement",
1445
+ "original": "./getOwnEnumerablePropertySymbols.js"
1446
+ },
1447
+ {
1448
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1449
+ "kind": "import-statement",
1450
+ "external": true
1451
+ }
1452
+ ],
1453
+ "format": "esm"
1454
+ },
1455
+ "node_modules/chai/lib/chai/utils/isNaN.js": {
1456
+ "bytes": 164,
1457
+ "imports": [
1458
+ {
1459
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1460
+ "kind": "import-statement",
1461
+ "external": true
1462
+ }
1463
+ ],
1464
+ "format": "esm"
1465
+ },
1466
+ "node_modules/chai/lib/chai/utils/getOperator.js": {
1467
+ "bytes": 1324,
1468
+ "imports": [
1469
+ {
1470
+ "path": "node_modules/chai/lib/chai/utils/flag.js",
1471
+ "kind": "import-statement",
1472
+ "original": "./flag.js"
1473
+ },
1474
+ {
1475
+ "path": "node_modules/chai/lib/chai/utils/type-detect.js",
1476
+ "kind": "import-statement",
1477
+ "original": "./type-detect.js"
1478
+ },
1479
+ {
1480
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1481
+ "kind": "import-statement",
1482
+ "external": true
1483
+ }
1484
+ ],
1485
+ "format": "esm"
1486
+ },
1487
+ "node_modules/chai/lib/chai/utils/index.js": {
1488
+ "bytes": 2721,
1489
+ "imports": [
1490
+ {
1491
+ "path": "node_modules/check-error/index.js",
1492
+ "kind": "import-statement",
1493
+ "original": "check-error"
1494
+ },
1495
+ {
1496
+ "path": "node_modules/chai/lib/chai/utils/test.js",
1497
+ "kind": "import-statement",
1498
+ "original": "./test.js"
1499
+ },
1500
+ {
1501
+ "path": "node_modules/chai/lib/chai/utils/type-detect.js",
1502
+ "kind": "import-statement",
1503
+ "original": "./type-detect.js"
1504
+ },
1505
+ {
1506
+ "path": "node_modules/chai/lib/chai/utils/expectTypes.js",
1507
+ "kind": "import-statement",
1508
+ "original": "./expectTypes.js"
1509
+ },
1510
+ {
1511
+ "path": "node_modules/chai/lib/chai/utils/getMessage.js",
1512
+ "kind": "import-statement",
1513
+ "original": "./getMessage.js"
1514
+ },
1515
+ {
1516
+ "path": "node_modules/chai/lib/chai/utils/getActual.js",
1517
+ "kind": "import-statement",
1518
+ "original": "./getActual.js"
1519
+ },
1520
+ {
1521
+ "path": "node_modules/chai/lib/chai/utils/inspect.js",
1522
+ "kind": "import-statement",
1523
+ "original": "./inspect.js"
1524
+ },
1525
+ {
1526
+ "path": "node_modules/chai/lib/chai/utils/objDisplay.js",
1527
+ "kind": "import-statement",
1528
+ "original": "./objDisplay.js"
1529
+ },
1530
+ {
1531
+ "path": "node_modules/chai/lib/chai/utils/flag.js",
1532
+ "kind": "import-statement",
1533
+ "original": "./flag.js"
1534
+ },
1535
+ {
1536
+ "path": "node_modules/chai/lib/chai/utils/transferFlags.js",
1537
+ "kind": "import-statement",
1538
+ "original": "./transferFlags.js"
1539
+ },
1540
+ {
1541
+ "path": "node_modules/deep-eql/index.js",
1542
+ "kind": "import-statement",
1543
+ "original": "deep-eql"
1544
+ },
1545
+ {
1546
+ "path": "node_modules/pathval/index.js",
1547
+ "kind": "import-statement",
1548
+ "original": "pathval"
1549
+ },
1550
+ {
1551
+ "path": "node_modules/chai/lib/chai/utils/addProperty.js",
1552
+ "kind": "import-statement",
1553
+ "original": "./addProperty.js"
1554
+ },
1555
+ {
1556
+ "path": "node_modules/chai/lib/chai/utils/addMethod.js",
1557
+ "kind": "import-statement",
1558
+ "original": "./addMethod.js"
1559
+ },
1560
+ {
1561
+ "path": "node_modules/chai/lib/chai/utils/overwriteProperty.js",
1562
+ "kind": "import-statement",
1563
+ "original": "./overwriteProperty.js"
1564
+ },
1565
+ {
1566
+ "path": "node_modules/chai/lib/chai/utils/overwriteMethod.js",
1567
+ "kind": "import-statement",
1568
+ "original": "./overwriteMethod.js"
1569
+ },
1570
+ {
1571
+ "path": "node_modules/chai/lib/chai/utils/addChainableMethod.js",
1572
+ "kind": "import-statement",
1573
+ "original": "./addChainableMethod.js"
1574
+ },
1575
+ {
1576
+ "path": "node_modules/chai/lib/chai/utils/overwriteChainableMethod.js",
1577
+ "kind": "import-statement",
1578
+ "original": "./overwriteChainableMethod.js"
1579
+ },
1580
+ {
1581
+ "path": "node_modules/chai/lib/chai/utils/compareByInspect.js",
1582
+ "kind": "import-statement",
1583
+ "original": "./compareByInspect.js"
1584
+ },
1585
+ {
1586
+ "path": "node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js",
1587
+ "kind": "import-statement",
1588
+ "original": "./getOwnEnumerablePropertySymbols.js"
1589
+ },
1590
+ {
1591
+ "path": "node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js",
1592
+ "kind": "import-statement",
1593
+ "original": "./getOwnEnumerableProperties.js"
1594
+ },
1595
+ {
1596
+ "path": "node_modules/chai/lib/chai/utils/proxify.js",
1597
+ "kind": "import-statement",
1598
+ "original": "./proxify.js"
1599
+ },
1600
+ {
1601
+ "path": "node_modules/chai/lib/chai/utils/addLengthGuard.js",
1602
+ "kind": "import-statement",
1603
+ "original": "./addLengthGuard.js"
1604
+ },
1605
+ {
1606
+ "path": "node_modules/chai/lib/chai/utils/isProxyEnabled.js",
1607
+ "kind": "import-statement",
1608
+ "original": "./isProxyEnabled.js"
1609
+ },
1610
+ {
1611
+ "path": "node_modules/chai/lib/chai/utils/isNaN.js",
1612
+ "kind": "import-statement",
1613
+ "original": "./isNaN.js"
1614
+ },
1615
+ {
1616
+ "path": "node_modules/chai/lib/chai/utils/getOperator.js",
1617
+ "kind": "import-statement",
1618
+ "original": "./getOperator.js"
1619
+ },
1620
+ {
1621
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1622
+ "kind": "import-statement",
1623
+ "external": true
1624
+ }
1625
+ ],
1626
+ "format": "esm"
1627
+ },
1628
+ "node_modules/chai/lib/chai/core/assertions.js": {
1629
+ "bytes": 133661,
1630
+ "imports": [
1631
+ {
1632
+ "path": "node_modules/chai/lib/chai/assertion.js",
1633
+ "kind": "import-statement",
1634
+ "original": "../assertion.js"
1635
+ },
1636
+ {
1637
+ "path": "node_modules/assertion-error/index.js",
1638
+ "kind": "import-statement",
1639
+ "original": "assertion-error"
1640
+ },
1641
+ {
1642
+ "path": "node_modules/chai/lib/chai/utils/index.js",
1643
+ "kind": "import-statement",
1644
+ "original": "../utils/index.js"
1645
+ },
1646
+ {
1647
+ "path": "node_modules/chai/lib/chai/config.js",
1648
+ "kind": "import-statement",
1649
+ "original": "../config.js"
1650
+ },
1651
+ {
1652
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1653
+ "kind": "import-statement",
1654
+ "external": true
1655
+ }
1656
+ ],
1657
+ "format": "esm"
1658
+ },
1659
+ "node_modules/chai/index.js": {
1660
+ "bytes": 31,
1661
+ "imports": [
1662
+ {
1663
+ "path": "node_modules/chai/lib/chai.js",
1664
+ "kind": "import-statement",
1665
+ "original": "./lib/chai.js"
1666
+ },
1667
+ {
1668
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1669
+ "kind": "import-statement",
1670
+ "external": true
1671
+ }
1672
+ ],
1673
+ "format": "esm"
1674
+ },
1675
+ "node_modules/chai/lib/chai/interface/expect.js": {
1676
+ "bytes": 1256,
1677
+ "imports": [
1678
+ {
1679
+ "path": "node_modules/chai/index.js",
1680
+ "kind": "import-statement",
1681
+ "original": "../../../index.js"
1682
+ },
1683
+ {
1684
+ "path": "node_modules/chai/lib/chai/assertion.js",
1685
+ "kind": "import-statement",
1686
+ "original": "../assertion.js"
1687
+ },
1688
+ {
1689
+ "path": "node_modules/assertion-error/index.js",
1690
+ "kind": "import-statement",
1691
+ "original": "assertion-error"
1692
+ },
1693
+ {
1694
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1695
+ "kind": "import-statement",
1696
+ "external": true
1697
+ }
1698
+ ],
1699
+ "format": "esm"
1700
+ },
1701
+ "node_modules/chai/lib/chai/interface/should.js": {
1702
+ "bytes": 6039,
1703
+ "imports": [
1704
+ {
1705
+ "path": "node_modules/chai/lib/chai/assertion.js",
1706
+ "kind": "import-statement",
1707
+ "original": "../assertion.js"
1708
+ },
1709
+ {
1710
+ "path": "node_modules/assertion-error/index.js",
1711
+ "kind": "import-statement",
1712
+ "original": "assertion-error"
1713
+ },
1714
+ {
1715
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1716
+ "kind": "import-statement",
1717
+ "external": true
1718
+ }
1719
+ ],
1720
+ "format": "esm"
1721
+ },
1722
+ "node_modules/chai/lib/chai/interface/assert.js": {
1723
+ "bytes": 89959,
1724
+ "imports": [
1725
+ {
1726
+ "path": "node_modules/chai/index.js",
1727
+ "kind": "import-statement",
1728
+ "original": "../../../index.js"
1729
+ },
1730
+ {
1731
+ "path": "node_modules/chai/lib/chai/assertion.js",
1732
+ "kind": "import-statement",
1733
+ "original": "../assertion.js"
1734
+ },
1735
+ {
1736
+ "path": "node_modules/chai/lib/chai/utils/index.js",
1737
+ "kind": "import-statement",
1738
+ "original": "../utils/index.js"
1739
+ },
1740
+ {
1741
+ "path": "node_modules/assertion-error/index.js",
1742
+ "kind": "import-statement",
1743
+ "original": "assertion-error"
1744
+ },
1745
+ {
1746
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1747
+ "kind": "import-statement",
1748
+ "external": true
1749
+ }
1750
+ ],
1751
+ "format": "esm"
1752
+ },
1753
+ "node_modules/chai/lib/chai.js": {
1754
+ "bytes": 1276,
1755
+ "imports": [
1756
+ {
1757
+ "path": "node_modules/chai/lib/chai/utils/index.js",
1758
+ "kind": "import-statement",
1759
+ "original": "./chai/utils/index.js"
1760
+ },
1761
+ {
1762
+ "path": "node_modules/assertion-error/index.js",
1763
+ "kind": "import-statement",
1764
+ "original": "assertion-error"
1765
+ },
1766
+ {
1767
+ "path": "node_modules/chai/lib/chai/config.js",
1768
+ "kind": "import-statement",
1769
+ "original": "./chai/config.js"
1770
+ },
1771
+ {
1772
+ "path": "node_modules/chai/lib/chai/core/assertions.js",
1773
+ "kind": "import-statement",
1774
+ "original": "./chai/core/assertions.js"
1775
+ },
1776
+ {
1777
+ "path": "node_modules/chai/lib/chai/interface/expect.js",
1778
+ "kind": "import-statement",
1779
+ "original": "./chai/interface/expect.js"
1780
+ },
1781
+ {
1782
+ "path": "node_modules/chai/lib/chai/assertion.js",
1783
+ "kind": "import-statement",
1784
+ "original": "./chai/assertion.js"
1785
+ },
1786
+ {
1787
+ "path": "node_modules/chai/lib/chai/interface/should.js",
1788
+ "kind": "import-statement",
1789
+ "original": "./chai/interface/should.js"
1790
+ },
1791
+ {
1792
+ "path": "node_modules/chai/lib/chai/interface/assert.js",
1793
+ "kind": "import-statement",
1794
+ "original": "./chai/interface/assert.js"
1795
+ },
1796
+ {
1797
+ "path": "node_modules/chai/lib/chai/assertion.js",
1798
+ "kind": "import-statement",
1799
+ "original": "./chai/assertion.js"
1800
+ },
1801
+ {
1802
+ "path": "node_modules/chai/lib/chai/interface/expect.js",
1803
+ "kind": "import-statement",
1804
+ "original": "./chai/interface/expect.js"
1805
+ },
1806
+ {
1807
+ "path": "node_modules/chai/lib/chai/interface/should.js",
1808
+ "kind": "import-statement",
1809
+ "original": "./chai/interface/should.js"
1810
+ },
1811
+ {
1812
+ "path": "node_modules/chai/lib/chai/interface/assert.js",
1813
+ "kind": "import-statement",
1814
+ "original": "./chai/interface/assert.js"
1815
+ },
1816
+ {
1817
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1818
+ "kind": "import-statement",
1819
+ "external": true
1820
+ }
1821
+ ],
1822
+ "format": "esm"
1823
+ },
1824
+ "src/lib/pmProxy.test/adapter.ts": {
1825
+ "bytes": 2069,
1826
+ "imports": [
1827
+ {
1828
+ "path": "node_modules/chai/lib/chai.js",
1829
+ "kind": "import-statement",
1830
+ "original": "chai"
1831
+ },
1832
+ {
1833
+ "path": "./types",
1834
+ "kind": "import-statement",
1835
+ "external": true
1836
+ },
1837
+ {
1838
+ "path": "../../CoreTypes",
1839
+ "kind": "import-statement",
1840
+ "external": true
1841
+ },
1842
+ {
1843
+ "path": "src/lib/pmProxy.ts",
1844
+ "kind": "import-statement",
1845
+ "original": "../pmProxy"
1846
+ },
1847
+ {
1848
+ "path": "../types",
1849
+ "kind": "import-statement",
1850
+ "external": true
1851
+ },
1852
+ {
1853
+ "path": "src/lib/pmProxy.test/mockPMBase.ts",
1854
+ "kind": "import-statement",
1855
+ "original": "./mockPMBase"
1856
+ },
1857
+ {
1858
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1859
+ "kind": "import-statement",
1860
+ "external": true
1861
+ }
1862
+ ],
1863
+ "format": "esm"
1864
+ },
1865
+ "src/lib/pmProxy.test/index.ts": {
1866
+ "bytes": 515,
1867
+ "imports": [
1868
+ {
1869
+ "path": "src/Node.ts",
1870
+ "kind": "import-statement",
1871
+ "original": "../../Node"
1872
+ },
1873
+ {
1874
+ "path": "src/lib/pmProxy.test/implementation.ts",
1875
+ "kind": "import-statement",
1876
+ "original": "./implementation"
1877
+ },
1878
+ {
1879
+ "path": "src/lib/pmProxy.test/specification.ts",
1880
+ "kind": "import-statement",
1881
+ "original": "./specification"
1882
+ },
1883
+ {
1884
+ "path": "src/lib/pmProxy.test/adapter.ts",
1885
+ "kind": "import-statement",
1886
+ "original": "./adapter"
1887
+ },
1888
+ {
1889
+ "path": "./types",
1890
+ "kind": "import-statement",
1891
+ "external": true
1892
+ },
1893
+ {
1894
+ "path": "src/lib/pmProxy.ts",
1895
+ "kind": "import-statement",
1896
+ "original": "../pmProxy"
1897
+ },
1898
+ {
1899
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1900
+ "kind": "import-statement",
1901
+ "external": true
1902
+ }
1903
+ ],
1904
+ "format": "esm"
1905
+ },
1906
+ "src/PM/pure.ts": {
1907
+ "bytes": 4140,
1908
+ "imports": [
1909
+ {
1910
+ "path": "puppeteer-core",
1911
+ "kind": "import-statement",
1912
+ "external": true
1913
+ },
1914
+ {
1915
+ "path": "puppeteer-core/lib/esm/puppeteer",
1916
+ "kind": "import-statement",
1917
+ "external": true
1918
+ },
1919
+ {
1920
+ "path": "../lib",
1921
+ "kind": "import-statement",
1922
+ "external": true
1923
+ },
1924
+ {
1925
+ "path": "src/PM/index.ts",
1926
+ "kind": "import-statement",
1927
+ "original": "."
1928
+ },
1929
+ {
1930
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1931
+ "kind": "import-statement",
1932
+ "external": true
1933
+ }
1934
+ ],
1935
+ "format": "esm"
1936
+ },
1937
+ "src/Pure.ts": {
1938
+ "bytes": 2325,
1939
+ "imports": [
1940
+ {
1941
+ "path": "./CoreTypes.js",
1942
+ "kind": "import-statement",
1943
+ "external": true
1944
+ },
1945
+ {
1946
+ "path": "src/lib/core.ts",
1947
+ "kind": "import-statement",
1948
+ "original": "./lib/core.js"
1949
+ },
1950
+ {
1951
+ "path": "src/lib/index.ts",
1952
+ "kind": "import-statement",
1953
+ "original": "./lib/index.js"
1954
+ },
1955
+ {
1956
+ "path": "src/PM/pure.ts",
1957
+ "kind": "import-statement",
1958
+ "original": "./PM/pure.js"
1959
+ },
1960
+ {
1961
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1962
+ "kind": "import-statement",
1963
+ "external": true
1964
+ }
1965
+ ],
1966
+ "format": "esm"
1967
+ },
1968
+ "src/lib/core.test/core.test.specification.ts": {
1969
+ "bytes": 2977,
1970
+ "imports": [
1971
+ {
1972
+ "path": "../../CoreTypes",
1973
+ "kind": "import-statement",
1974
+ "external": true
1975
+ },
1976
+ {
1977
+ "path": "./core.test.types",
1978
+ "kind": "import-statement",
1979
+ "external": true
1980
+ },
1981
+ {
1982
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
1983
+ "kind": "import-statement",
1984
+ "external": true
1985
+ }
1986
+ ],
1987
+ "format": "esm"
1988
+ },
1989
+ "src/lib/core.test/MockCore.ts": {
1990
+ "bytes": 1836,
1991
+ "imports": [
1992
+ {
1993
+ "path": "src/lib/core.ts",
1994
+ "kind": "import-statement",
1995
+ "original": "../core"
1996
+ },
1997
+ {
1998
+ "path": "../../CoreTypes",
1999
+ "kind": "import-statement",
2000
+ "external": true
2001
+ },
2002
+ {
2003
+ "path": "..",
2004
+ "kind": "import-statement",
2005
+ "external": true
2006
+ },
2007
+ {
2008
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
2009
+ "kind": "import-statement",
2010
+ "external": true
2011
+ }
2012
+ ],
2013
+ "format": "esm"
2014
+ },
2015
+ "src/lib/core.test/core.test.implementation.ts": {
2016
+ "bytes": 4325,
2017
+ "imports": [
2018
+ {
2019
+ "path": "../../CoreTypes",
2020
+ "kind": "import-statement",
2021
+ "external": true
2022
+ },
2023
+ {
2024
+ "path": "src/lib/core.test/MockCore.ts",
2025
+ "kind": "import-statement",
2026
+ "original": "./MockCore"
2027
+ },
2028
+ {
2029
+ "path": "./core.test.types",
2030
+ "kind": "import-statement",
2031
+ "external": true
2032
+ },
2033
+ {
2034
+ "path": "..",
2035
+ "kind": "import-statement",
2036
+ "external": true
2037
+ },
2038
+ {
2039
+ "path": "../../CoreTypes",
2040
+ "kind": "import-statement",
2041
+ "external": true
2042
+ },
2043
+ {
2044
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
2045
+ "kind": "import-statement",
2046
+ "external": true
2047
+ }
2048
+ ],
2049
+ "format": "esm"
2050
+ },
2051
+ "src/lib/core.test/core.test.adapter.ts": {
2052
+ "bytes": 1138,
2053
+ "imports": [
2054
+ {
2055
+ "path": "../../CoreTypes",
2056
+ "kind": "import-statement",
2057
+ "external": true
2058
+ },
2059
+ {
2060
+ "path": "./core.test.types",
2061
+ "kind": "import-statement",
2062
+ "external": true
2063
+ },
2064
+ {
2065
+ "path": "src/lib/core.test/MockCore.ts",
2066
+ "kind": "import-statement",
2067
+ "original": "./MockCore"
2068
+ },
2069
+ {
2070
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
2071
+ "kind": "import-statement",
2072
+ "external": true
2073
+ }
2074
+ ],
2075
+ "format": "esm"
2076
+ },
2077
+ "src/lib/core.test/core.test.ts": {
2078
+ "bytes": 2449,
2079
+ "imports": [
2080
+ {
2081
+ "path": "src/Pure.ts",
2082
+ "kind": "import-statement",
2083
+ "original": "../../Pure"
2084
+ },
2085
+ {
2086
+ "path": "src/lib/core.test/core.test.specification.ts",
2087
+ "kind": "import-statement",
2088
+ "original": "./core.test.specification"
2089
+ },
2090
+ {
2091
+ "path": "src/lib/core.test/core.test.implementation.ts",
2092
+ "kind": "import-statement",
2093
+ "original": "./core.test.implementation"
2094
+ },
2095
+ {
2096
+ "path": "src/lib/core.test/core.test.adapter.ts",
2097
+ "kind": "import-statement",
2098
+ "original": "./core.test.adapter"
2099
+ },
2100
+ {
2101
+ "path": "./core.test.types",
2102
+ "kind": "import-statement",
2103
+ "external": true
2104
+ },
2105
+ {
2106
+ "path": "src/lib/core.test/MockCore.ts",
2107
+ "kind": "import-statement",
2108
+ "original": "./MockCore"
2109
+ },
2110
+ {
2111
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
2112
+ "kind": "import-statement",
2113
+ "external": true
2114
+ }
2115
+ ],
2116
+ "format": "esm"
2117
+ },
2118
+ "src/lib/classBuilder.test/mock.ts": {
2119
+ "bytes": 1932,
2120
+ "imports": [
2121
+ {
2122
+ "path": "../../CoreTypes",
2123
+ "kind": "import-statement",
2124
+ "external": true
2125
+ },
2126
+ {
2127
+ "path": "src/lib/classBuilder.ts",
2128
+ "kind": "import-statement",
2129
+ "original": "../classBuilder"
2130
+ },
2131
+ {
2132
+ "path": "../types",
2133
+ "kind": "import-statement",
2134
+ "external": true
2135
+ },
2136
+ {
2137
+ "path": "..",
2138
+ "kind": "import-statement",
2139
+ "external": true
2140
+ },
2141
+ {
2142
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
2143
+ "kind": "import-statement",
2144
+ "external": true
2145
+ }
2146
+ ],
2147
+ "format": "esm"
2148
+ },
2149
+ "src/lib/classBuilder.test/classBuilder.test.implementation.ts": {
2150
+ "bytes": 6241,
2151
+ "imports": [
2152
+ {
2153
+ "path": "stream",
2154
+ "kind": "import-statement",
2155
+ "external": true
2156
+ },
2157
+ {
2158
+ "path": "../../CoreTypes",
2159
+ "kind": "import-statement",
2160
+ "external": true
2161
+ },
2162
+ {
2163
+ "path": "src/lib/classBuilder.test/mock.ts",
2164
+ "kind": "import-statement",
2165
+ "original": "./mock"
2166
+ },
2167
+ {
2168
+ "path": "../classBuilder",
2169
+ "kind": "import-statement",
2170
+ "external": true
2171
+ },
2172
+ {
2173
+ "path": "./classBuilder.test.types",
2174
+ "kind": "import-statement",
2175
+ "external": true
2176
+ },
2177
+ {
2178
+ "path": "..",
2179
+ "kind": "import-statement",
2180
+ "external": true
2181
+ },
2182
+ {
2183
+ "path": "src/lib/classBuilder.test/classBuilder.test.specification.ts",
2184
+ "kind": "import-statement",
2185
+ "original": "./classBuilder.test.specification"
2186
+ },
2187
+ {
2188
+ "path": "src/lib/BaseSuite.test/mock.ts",
2189
+ "kind": "import-statement",
2190
+ "original": "../BaseSuite.test/mock"
2191
+ },
2192
+ {
2193
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
2194
+ "kind": "import-statement",
2195
+ "external": true
2196
+ }
2197
+ ],
2198
+ "format": "esm"
2199
+ },
2200
+ "src/lib/classBuilder.test/classBuilder.test.specification.ts": {
2201
+ "bytes": 2935,
2202
+ "imports": [
2203
+ {
2204
+ "path": "../../CoreTypes",
2205
+ "kind": "import-statement",
2206
+ "external": true
2207
+ },
2208
+ {
2209
+ "path": "./classBuilder.test.types",
2210
+ "kind": "import-statement",
2211
+ "external": true
2212
+ },
2213
+ {
2214
+ "path": "src/lib/classBuilder.test/classBuilder.test.implementation.ts",
2215
+ "kind": "import-statement",
2216
+ "original": "./classBuilder.test.implementation"
2217
+ },
2218
+ {
2219
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
2220
+ "kind": "import-statement",
2221
+ "external": true
2222
+ }
2223
+ ],
2224
+ "format": "esm"
2225
+ },
2226
+ "src/lib/classBuilder.test/classBuilder.test.adapter.ts": {
2227
+ "bytes": 807,
2228
+ "imports": [
2229
+ {
2230
+ "path": "../../CoreTypes",
2231
+ "kind": "import-statement",
2232
+ "external": true
2233
+ },
2234
+ {
2235
+ "path": "../baseBuilder.test/baseBuilder.test.types",
2236
+ "kind": "import-statement",
2237
+ "external": true
2238
+ },
2239
+ {
2240
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
2241
+ "kind": "import-statement",
2242
+ "external": true
2243
+ }
2244
+ ],
2245
+ "format": "esm"
2246
+ },
2247
+ "src/lib/classBuilder.test/classBuilder.test.ts": {
2248
+ "bytes": 494,
2249
+ "imports": [
2250
+ {
2251
+ "path": "src/Node.ts",
2252
+ "kind": "import-statement",
2253
+ "original": "../../Node"
2254
+ },
2255
+ {
2256
+ "path": "src/lib/classBuilder.ts",
2257
+ "kind": "import-statement",
2258
+ "original": "../classBuilder"
2259
+ },
2260
+ {
2261
+ "path": "src/lib/classBuilder.test/classBuilder.test.specification.ts",
2262
+ "kind": "import-statement",
2263
+ "original": "./classBuilder.test.specification"
2264
+ },
2265
+ {
2266
+ "path": "src/lib/classBuilder.test/classBuilder.test.implementation.ts",
2267
+ "kind": "import-statement",
2268
+ "original": "./classBuilder.test.implementation"
2269
+ },
2270
+ {
2271
+ "path": "src/lib/classBuilder.test/classBuilder.test.adapter.ts",
2272
+ "kind": "import-statement",
2273
+ "original": "./classBuilder.test.adapter"
2274
+ },
2275
+ {
2276
+ "path": "./classBuilder.test.types",
2277
+ "kind": "import-statement",
2278
+ "external": true
2279
+ },
2280
+ {
2281
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
2282
+ "kind": "import-statement",
2283
+ "external": true
2284
+ }
2285
+ ],
2286
+ "format": "esm"
2287
+ },
2288
+ "src/lib/baseBuilder.test/baseBuilder.test.specification.ts": {
2289
+ "bytes": 985,
2290
+ "imports": [
2291
+ {
2292
+ "path": "../../CoreTypes",
2293
+ "kind": "import-statement",
2294
+ "external": true
2295
+ },
2296
+ {
2297
+ "path": "./baseBuilder.test.types",
2298
+ "kind": "import-statement",
2299
+ "external": true
2300
+ },
2301
+ {
2302
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
2303
+ "kind": "import-statement",
2304
+ "external": true
2305
+ }
2306
+ ],
2307
+ "format": "esm"
2308
+ },
2309
+ "src/lib/baseBuilder.test/baseBuilder.test.mock.ts": {
2310
+ "bytes": 2215,
2311
+ "imports": [
2312
+ {
2313
+ "path": "../../CoreTypes",
2314
+ "kind": "import-statement",
2315
+ "external": true
2316
+ },
2317
+ {
2318
+ "path": "src/lib/basebuilder.ts",
2319
+ "kind": "import-statement",
2320
+ "original": "../basebuilder"
2321
+ },
2322
+ {
2323
+ "path": "../types",
2324
+ "kind": "import-statement",
2325
+ "external": true
2326
+ },
2327
+ {
2328
+ "path": "..",
2329
+ "kind": "import-statement",
2330
+ "external": true
2331
+ },
2332
+ {
2333
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
2334
+ "kind": "import-statement",
2335
+ "external": true
2336
+ }
2337
+ ],
2338
+ "format": "esm"
2339
+ },
2340
+ "src/lib/baseBuilder.test/baseBuilder.test.implementation.ts": {
2341
+ "bytes": 4281,
2342
+ "imports": [
2343
+ {
2344
+ "path": "../../CoreTypes",
2345
+ "kind": "import-statement",
2346
+ "external": true
2347
+ },
2348
+ {
2349
+ "path": "src/lib/baseBuilder.test/baseBuilder.test.mock.ts",
2350
+ "kind": "import-statement",
2351
+ "original": "./baseBuilder.test.mock"
2352
+ },
2353
+ {
2354
+ "path": "./baseBuilder.test.types",
2355
+ "kind": "import-statement",
2356
+ "external": true
2357
+ },
2358
+ {
2359
+ "path": "..",
2360
+ "kind": "import-statement",
2361
+ "external": true
2362
+ },
2363
+ {
2364
+ "path": "src/lib/basebuilder.ts",
2365
+ "kind": "import-statement",
2366
+ "original": "../basebuilder"
2367
+ },
2368
+ {
2369
+ "path": "../types",
2370
+ "kind": "import-statement",
2371
+ "external": true
2372
+ },
2373
+ {
2374
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
2375
+ "kind": "import-statement",
2376
+ "external": true
2377
+ }
2378
+ ],
2379
+ "format": "esm"
2380
+ },
2381
+ "src/lib/baseBuilder.test/baseBuilder.test.adapter.ts": {
2382
+ "bytes": 917,
2383
+ "imports": [
2384
+ {
2385
+ "path": "../../CoreTypes",
2386
+ "kind": "import-statement",
2387
+ "external": true
2388
+ },
2389
+ {
2390
+ "path": "./baseBuilder.test.types",
2391
+ "kind": "import-statement",
2392
+ "external": true
2393
+ },
2394
+ {
2395
+ "path": "..",
2396
+ "kind": "import-statement",
2397
+ "external": true
2398
+ },
2399
+ {
2400
+ "path": "../types",
2401
+ "kind": "import-statement",
2402
+ "external": true
2403
+ },
2404
+ {
2405
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
2406
+ "kind": "import-statement",
2407
+ "external": true
2408
+ }
2409
+ ],
2410
+ "format": "esm"
2411
+ },
2412
+ "src/lib/baseBuilder.test/baseBuilder.test.node.ts": {
2413
+ "bytes": 519,
2414
+ "imports": [
2415
+ {
2416
+ "path": "src/Node.ts",
2417
+ "kind": "import-statement",
2418
+ "original": "../../Node"
2419
+ },
2420
+ {
2421
+ "path": "src/lib/baseBuilder.test/baseBuilder.test.specification.ts",
2422
+ "kind": "import-statement",
2423
+ "original": "./baseBuilder.test.specification"
2424
+ },
2425
+ {
2426
+ "path": "src/lib/baseBuilder.test/baseBuilder.test.implementation.ts",
2427
+ "kind": "import-statement",
2428
+ "original": "./baseBuilder.test.implementation"
2429
+ },
2430
+ {
2431
+ "path": "src/lib/baseBuilder.test/baseBuilder.test.adapter.ts",
2432
+ "kind": "import-statement",
2433
+ "original": "./baseBuilder.test.adapter"
2434
+ },
2435
+ {
2436
+ "path": "./baseBuilder.test.types",
2437
+ "kind": "import-statement",
2438
+ "external": true
2439
+ },
2440
+ {
2441
+ "path": "src/lib/baseBuilder.test/baseBuilder.test.mock.ts",
2442
+ "kind": "import-statement",
2443
+ "original": "./baseBuilder.test.mock"
2444
+ },
2445
+ {
2446
+ "path": "/Users/adam/Code/testeranto/dist/cjs-shim.js",
2447
+ "kind": "import-statement",
2448
+ "external": true
2449
+ }
2450
+ ],
2451
+ "format": "esm"
2452
+ }
2453
+ },
2454
+ "outputs": {
2455
+ "testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs": {
2456
+ "imports": [
2457
+ {
2458
+ "path": "testeranto/bundles/node/core/chunk-C3APFDUV.mjs",
2459
+ "kind": "import-statement"
2460
+ },
2461
+ {
2462
+ "path": "testeranto/bundles/node/core/chunk-4JTDLQVA.mjs",
2463
+ "kind": "import-statement"
2464
+ },
2465
+ {
2466
+ "path": "testeranto/bundles/node/core/chunk-4CSH4UJE.mjs",
2467
+ "kind": "import-statement"
2468
+ }
2469
+ ],
2470
+ "exports": [
2471
+ "default"
2472
+ ],
2473
+ "entryPoint": "src/lib/BaseSuite.test/node.test.ts",
2474
+ "inputs": {
2475
+ "src/lib/BaseSuite.test/test.ts": {
2476
+ "bytesInOutput": 7643
2477
+ },
2478
+ "src/lib/BaseSuite.test/node.test.ts": {
2479
+ "bytesInOutput": 103
2480
+ }
2481
+ },
2482
+ "bytes": 8131
2483
+ },
2484
+ "testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs": {
2485
+ "imports": [
2486
+ {
2487
+ "path": "testeranto/bundles/node/core/chunk-4JTDLQVA.mjs",
2488
+ "kind": "import-statement"
2489
+ },
2490
+ {
2491
+ "path": "testeranto/bundles/node/core/chunk-4CSH4UJE.mjs",
2492
+ "kind": "import-statement"
2493
+ }
2494
+ ],
2495
+ "exports": [
2496
+ "default"
2497
+ ],
2498
+ "entryPoint": "src/lib/pmProxy.test/index.ts",
2499
+ "inputs": {
2500
+ "src/lib/pmProxy.test/mockPMBase.ts": {
2501
+ "bytesInOutput": 3221
2502
+ },
2503
+ "src/lib/pmProxy.test/implementation.ts": {
2504
+ "bytesInOutput": 3549
2505
+ },
2506
+ "src/lib/pmProxy.test/specification.ts": {
2507
+ "bytesInOutput": 4740
2508
+ },
2509
+ "node_modules/chai/lib/chai/utils/index.js": {
2510
+ "bytesInOutput": 1355
2511
+ },
2512
+ "node_modules/check-error/index.js": {
2513
+ "bytesInOutput": 1991
2514
+ },
2515
+ "node_modules/chai/lib/chai/utils/flag.js": {
2516
+ "bytesInOutput": 211
2517
+ },
2518
+ "node_modules/chai/lib/chai/utils/test.js": {
2519
+ "bytesInOutput": 113
2520
+ },
2521
+ "node_modules/chai/lib/chai/utils/type-detect.js": {
2522
+ "bytesInOutput": 324
2523
+ },
2524
+ "node_modules/assertion-error/index.js": {
2525
+ "bytesInOutput": 685
2526
+ },
2527
+ "node_modules/chai/lib/chai/utils/expectTypes.js": {
2528
+ "bytesInOutput": 771
2529
+ },
2530
+ "node_modules/chai/lib/chai/utils/getActual.js": {
2531
+ "bytesInOutput": 81
2532
+ },
2533
+ "node_modules/loupe/lib/helpers.js": {
2534
+ "bytesInOutput": 4447
2535
+ },
2536
+ "node_modules/loupe/lib/array.js": {
2537
+ "bytesInOutput": 563
2538
+ },
2539
+ "node_modules/loupe/lib/typedarray.js": {
2540
+ "bytesInOutput": 1164
2541
+ },
2542
+ "node_modules/loupe/lib/date.js": {
2543
+ "bytesInOutput": 345
2544
+ },
2545
+ "node_modules/loupe/lib/function.js": {
2546
+ "bytesInOutput": 311
2547
+ },
2548
+ "node_modules/loupe/lib/map.js": {
2549
+ "bytesInOutput": 549
2550
+ },
2551
+ "node_modules/loupe/lib/number.js": {
2552
+ "bytesInOutput": 513
2553
+ },
2554
+ "node_modules/loupe/lib/bigint.js": {
2555
+ "bytesInOutput": 193
2556
+ },
2557
+ "node_modules/loupe/lib/regexp.js": {
2558
+ "bytesInOutput": 267
2559
+ },
2560
+ "node_modules/loupe/lib/set.js": {
2561
+ "bytesInOutput": 298
2562
+ },
2563
+ "node_modules/loupe/lib/string.js": {
2564
+ "bytesInOutput": 717
2565
+ },
2566
+ "node_modules/loupe/lib/symbol.js": {
2567
+ "bytesInOutput": 184
2568
+ },
2569
+ "node_modules/loupe/lib/promise.js": {
2570
+ "bytesInOutput": 86
2571
+ },
2572
+ "node_modules/loupe/lib/object.js": {
2573
+ "bytesInOutput": 808
2574
+ },
2575
+ "node_modules/loupe/lib/class.js": {
2576
+ "bytesInOutput": 439
2577
+ },
2578
+ "node_modules/loupe/lib/arguments.js": {
2579
+ "bytesInOutput": 177
2580
+ },
2581
+ "node_modules/loupe/lib/error.js": {
2582
+ "bytesInOutput": 953
2583
+ },
2584
+ "node_modules/loupe/lib/html.js": {
2585
+ "bytesInOutput": 1514
2586
+ },
2587
+ "node_modules/loupe/lib/index.js": {
2588
+ "bytesInOutput": 3674
2589
+ },
2590
+ "node_modules/chai/lib/chai/config.js": {
2591
+ "bytesInOutput": 3771
2592
+ },
2593
+ "node_modules/chai/lib/chai/utils/inspect.js": {
2594
+ "bytesInOutput": 267
2595
+ },
2596
+ "node_modules/chai/lib/chai/utils/objDisplay.js": {
2597
+ "bytesInOutput": 674
2598
+ },
2599
+ "node_modules/chai/lib/chai/utils/getMessage.js": {
2600
+ "bytesInOutput": 585
2601
+ },
2602
+ "node_modules/chai/lib/chai/utils/transferFlags.js": {
2603
+ "bytesInOutput": 491
2604
+ },
2605
+ "node_modules/deep-eql/index.js": {
2606
+ "bytesInOutput": 10329
2607
+ },
2608
+ "node_modules/pathval/index.js": {
2609
+ "bytesInOutput": 1560
2610
+ },
2611
+ "node_modules/chai/lib/chai/assertion.js": {
2612
+ "bytesInOutput": 6111
2613
+ },
2614
+ "node_modules/chai/lib/chai/utils/isProxyEnabled.js": {
2615
+ "bytesInOutput": 122
2616
+ },
2617
+ "node_modules/chai/lib/chai/utils/addProperty.js": {
2618
+ "bytesInOutput": 522
2619
+ },
2620
+ "node_modules/chai/lib/chai/utils/addLengthGuard.js": {
2621
+ "bytesInOutput": 682
2622
+ },
2623
+ "node_modules/chai/lib/chai/utils/getProperties.js": {
2624
+ "bytesInOutput": 400
2625
+ },
2626
+ "node_modules/chai/lib/chai/utils/proxify.js": {
2627
+ "bytesInOutput": 2374
2628
+ },
2629
+ "node_modules/chai/lib/chai/utils/addMethod.js": {
2630
+ "bytesInOutput": 454
2631
+ },
2632
+ "node_modules/chai/lib/chai/utils/overwriteProperty.js": {
2633
+ "bytesInOutput": 792
2634
+ },
2635
+ "node_modules/chai/lib/chai/utils/overwriteMethod.js": {
2636
+ "bytesInOutput": 817
2637
+ },
2638
+ "node_modules/chai/lib/chai/utils/addChainableMethod.js": {
2639
+ "bytesInOutput": 2058
2640
+ },
2641
+ "node_modules/chai/lib/chai/utils/overwriteChainableMethod.js": {
2642
+ "bytesInOutput": 839
2643
+ },
2644
+ "node_modules/chai/lib/chai/utils/compareByInspect.js": {
2645
+ "bytesInOutput": 81
2646
+ },
2647
+ "node_modules/chai/lib/chai/utils/getOwnEnumerablePropertySymbols.js": {
2648
+ "bytesInOutput": 260
2649
+ },
2650
+ "node_modules/chai/lib/chai/utils/getOwnEnumerableProperties.js": {
2651
+ "bytesInOutput": 117
2652
+ },
2653
+ "node_modules/chai/lib/chai/utils/isNaN.js": {
2654
+ "bytesInOutput": 27
2655
+ },
2656
+ "node_modules/chai/lib/chai/utils/getOperator.js": {
2657
+ "bytesInOutput": 735
2658
+ },
2659
+ "node_modules/chai/lib/chai/core/assertions.js": {
2660
+ "bytesInOutput": 44728
2661
+ },
2662
+ "node_modules/chai/index.js": {
2663
+ "bytesInOutput": 0
2664
+ },
2665
+ "node_modules/chai/lib/chai/interface/expect.js": {
2666
+ "bytesInOutput": 374
2667
+ },
2668
+ "node_modules/chai/lib/chai/interface/should.js": {
2669
+ "bytesInOutput": 0
2670
+ },
2671
+ "node_modules/chai/lib/chai/interface/assert.js": {
2672
+ "bytesInOutput": 22956
2673
+ },
2674
+ "node_modules/chai/lib/chai.js": {
2675
+ "bytesInOutput": 0
2676
+ },
2677
+ "src/lib/pmProxy.test/adapter.ts": {
2678
+ "bytesInOutput": 1315
2679
+ },
2680
+ "src/lib/pmProxy.test/index.ts": {
2681
+ "bytesInOutput": 196
2682
+ }
2683
+ },
2684
+ "bytes": 149583
2685
+ },
2686
+ "testeranto/bundles/node/core/src/lib/core.test/core.test.mjs": {
2687
+ "imports": [
2688
+ {
2689
+ "path": "testeranto/bundles/node/core/chunk-4CSH4UJE.mjs",
2690
+ "kind": "import-statement"
2691
+ }
2692
+ ],
2693
+ "exports": [
2694
+ "default"
2695
+ ],
2696
+ "entryPoint": "src/lib/core.test/core.test.ts",
2697
+ "inputs": {
2698
+ "src/PM/pure.ts": {
2699
+ "bytesInOutput": 2976
2700
+ },
2701
+ "src/Pure.ts": {
2702
+ "bytesInOutput": 1071
2703
+ },
2704
+ "src/lib/core.test/core.test.specification.ts": {
2705
+ "bytesInOutput": 2824
2706
+ },
2707
+ "src/lib/core.test/MockCore.ts": {
2708
+ "bytesInOutput": 862
2709
+ },
2710
+ "src/lib/core.test/core.test.implementation.ts": {
2711
+ "bytesInOutput": 3886
2712
+ },
2713
+ "src/lib/core.test/core.test.adapter.ts": {
2714
+ "bytesInOutput": 869
2715
+ },
2716
+ "src/lib/core.test/core.test.ts": {
2717
+ "bytesInOutput": 114
2718
+ }
2719
+ },
2720
+ "bytes": 13082
2721
+ },
2722
+ "testeranto/bundles/node/core/src/lib/classBuilder.test/classBuilder.test.mjs": {
2723
+ "imports": [
2724
+ {
2725
+ "path": "testeranto/bundles/node/core/chunk-C3APFDUV.mjs",
2726
+ "kind": "import-statement"
2727
+ },
2728
+ {
2729
+ "path": "testeranto/bundles/node/core/chunk-4JTDLQVA.mjs",
2730
+ "kind": "import-statement"
2731
+ },
2732
+ {
2733
+ "path": "testeranto/bundles/node/core/chunk-4CSH4UJE.mjs",
2734
+ "kind": "import-statement"
2735
+ }
2736
+ ],
2737
+ "exports": [
2738
+ "default"
2739
+ ],
2740
+ "entryPoint": "src/lib/classBuilder.test/classBuilder.test.ts",
2741
+ "inputs": {
2742
+ "src/lib/classBuilder.test/mock.ts": {
2743
+ "bytesInOutput": 1169
2744
+ },
2745
+ "src/lib/classBuilder.test/classBuilder.test.implementation.ts": {
2746
+ "bytesInOutput": 5739
2747
+ },
2748
+ "src/lib/classBuilder.test/classBuilder.test.specification.ts": {
2749
+ "bytesInOutput": 2693
2750
+ },
2751
+ "src/lib/classBuilder.test/classBuilder.test.adapter.ts": {
2752
+ "bytesInOutput": 558
2753
+ },
2754
+ "src/lib/classBuilder.test/classBuilder.test.ts": {
2755
+ "bytesInOutput": 171
2756
+ }
2757
+ },
2758
+ "bytes": 10930
2759
+ },
2760
+ "testeranto/bundles/node/core/chunk-C3APFDUV.mjs": {
2761
+ "imports": [
2762
+ {
2763
+ "path": "testeranto/bundles/node/core/chunk-4CSH4UJE.mjs",
2764
+ "kind": "import-statement"
2765
+ }
2766
+ ],
2767
+ "exports": [
2768
+ "MockSuite"
2769
+ ],
2770
+ "inputs": {
2771
+ "src/lib/BaseSuite.test/mock.ts": {
2772
+ "bytesInOutput": 1424
2773
+ }
2774
+ },
2775
+ "bytes": 1660
2776
+ },
2777
+ "testeranto/bundles/node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs": {
2778
+ "imports": [
2779
+ {
2780
+ "path": "testeranto/bundles/node/core/chunk-4JTDLQVA.mjs",
2781
+ "kind": "import-statement"
2782
+ },
2783
+ {
2784
+ "path": "testeranto/bundles/node/core/chunk-4CSH4UJE.mjs",
2785
+ "kind": "import-statement"
2786
+ }
2787
+ ],
2788
+ "exports": [
2789
+ "default"
2790
+ ],
2791
+ "entryPoint": "src/lib/baseBuilder.test/baseBuilder.test.node.ts",
2792
+ "inputs": {
2793
+ "src/lib/baseBuilder.test/baseBuilder.test.specification.ts": {
2794
+ "bytesInOutput": 832
2795
+ },
2796
+ "src/lib/baseBuilder.test/baseBuilder.test.mock.ts": {
2797
+ "bytesInOutput": 1133
2798
+ },
2799
+ "src/lib/baseBuilder.test/baseBuilder.test.implementation.ts": {
2800
+ "bytesInOutput": 3427
2801
+ },
2802
+ "src/lib/baseBuilder.test/baseBuilder.test.adapter.ts": {
2803
+ "bytesInOutput": 600
2804
+ },
2805
+ "src/lib/baseBuilder.test/baseBuilder.test.node.ts": {
2806
+ "bytesInOutput": 131
2807
+ }
2808
+ },
2809
+ "bytes": 6680
2810
+ },
2811
+ "testeranto/bundles/node/core/chunk-4JTDLQVA.mjs": {
2812
+ "imports": [
2813
+ {
2814
+ "path": "testeranto/bundles/node/core/chunk-4CSH4UJE.mjs",
2815
+ "kind": "import-statement"
2816
+ },
2817
+ {
2818
+ "path": "net",
2819
+ "kind": "import-statement",
2820
+ "external": true
2821
+ },
2822
+ {
2823
+ "path": "fs",
2824
+ "kind": "import-statement",
2825
+ "external": true
2826
+ },
2827
+ {
2828
+ "path": "path",
2829
+ "kind": "import-statement",
2830
+ "external": true
2831
+ }
2832
+ ],
2833
+ "exports": [
2834
+ "Node_default"
2835
+ ],
2836
+ "inputs": {
2837
+ "src/PM/node.ts": {
2838
+ "bytesInOutput": 5312
2839
+ },
2840
+ "src/Node.ts": {
2841
+ "bytesInOutput": 1202
2842
+ }
2843
+ },
2844
+ "bytes": 6761
2845
+ },
2846
+ "testeranto/bundles/node/core/chunk-4CSH4UJE.mjs": {
2847
+ "imports": [
2848
+ {
2849
+ "path": "node:path",
2850
+ "kind": "import-statement",
2851
+ "external": true
2852
+ },
2853
+ {
2854
+ "path": "node:url",
2855
+ "kind": "import-statement",
2856
+ "external": true
2857
+ }
2858
+ ],
2859
+ "exports": [
2860
+ "BaseBuilder",
2861
+ "BaseGiven",
2862
+ "BaseSuite",
2863
+ "BaseThen",
2864
+ "BaseWhen",
2865
+ "ClassBuilder",
2866
+ "PM",
2867
+ "TesterantoCore",
2868
+ "__export",
2869
+ "andWhenProxy",
2870
+ "butThenProxy",
2871
+ "defaultTestResourceRequirement"
2872
+ ],
2873
+ "inputs": {
2874
+ "dist/cjs-shim.js": {
2875
+ "bytesInOutput": 167
2876
+ },
2877
+ "src/lib/pmProxy.ts": {
2878
+ "bytesInOutput": 6590
2879
+ },
2880
+ "src/lib/basebuilder.ts": {
2881
+ "bytesInOutput": 2679
2882
+ },
2883
+ "src/lib/classBuilder.ts": {
2884
+ "bytesInOutput": 1804
2885
+ },
2886
+ "src/lib/BaseSuite.ts": {
2887
+ "bytesInOutput": 2451
2888
+ },
2889
+ "src/lib/index.ts": {
2890
+ "bytesInOutput": 672
2891
+ },
2892
+ "src/lib/abstractBase.ts": {
2893
+ "bytesInOutput": 5553
2894
+ },
2895
+ "src/lib/core.ts": {
2896
+ "bytesInOutput": 1640
2897
+ },
2898
+ "src/PM/index.ts": {
2899
+ "bytesInOutput": 20
2900
+ }
2901
+ },
2902
+ "bytes": 22238
2903
+ }
2904
+ }
2905
+ }
2906
+ }