testeranto 0.189.0 → 0.198.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 (769) hide show
  1. package/.vscode/settings.json +7 -2
  2. package/ALL_LICENSES.txt +11246 -0
  3. package/LICENSE +21 -0
  4. package/default-project.json +44 -0
  5. package/design-editor/DesignEditor.tsx +251 -0
  6. package/design-editor/index.ts +2 -0
  7. package/design-editor/server.ts +121 -0
  8. package/design-editor/types.ts +16 -0
  9. package/designs/default-project.json +210 -0
  10. package/dist/common/design-editor/DesignEditor.js +242 -0
  11. package/dist/common/design-editor/index.js +18 -0
  12. package/dist/common/design-editor/server.js +98 -0
  13. package/dist/common/src/App.js +40 -6
  14. package/dist/common/src/Node.js +3 -2
  15. package/dist/common/src/PM/PM_WithEslintAndTsc.js +8 -1
  16. package/dist/common/src/PM/base.js +1 -0
  17. package/dist/common/src/PM/main.js +371 -5
  18. package/dist/common/src/PM/node.js +4 -2
  19. package/dist/common/src/PM/pure.js +15 -57
  20. package/dist/common/src/PM/web.js +5 -3
  21. package/dist/common/src/Pure.js +2 -2
  22. package/dist/common/src/Pure.test.js +46 -78
  23. package/dist/common/src/ReportServer.js +8 -2
  24. package/dist/common/src/Web.js +2 -2
  25. package/dist/common/src/build.js +1 -1
  26. package/dist/common/src/components/DesignEditorPage.js +205 -0
  27. package/dist/common/src/components/pure/AppFrame.js +62 -13
  28. package/dist/common/src/components/pure/ModalContent.test/implementation.js +13 -11
  29. package/dist/common/src/components/pure/ModalContent.test/index.js +48 -2
  30. package/dist/common/src/components/pure/ModalContent.test/specification.js +2 -2
  31. package/dist/common/src/components/pure/NavBar.js +9 -10
  32. package/dist/common/src/components/pure/ProcessManager.js +112 -0
  33. package/dist/common/src/components/pure/ProcessManagerView.js +237 -0
  34. package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +134 -106
  35. package/dist/common/src/components/pure/ProjectsPageView.js +18 -12
  36. package/dist/common/src/components/pure/SettingsButton.js +4 -74
  37. package/dist/common/src/components/pure/SingleProcessView.js +214 -0
  38. package/dist/common/src/components/pure/TestPageView.js +457 -78
  39. package/dist/common/src/components/pure/TestPageView.test/implementation.js +90 -135
  40. package/dist/common/src/components/stateful/FeaturesReporter.js +1 -1
  41. package/dist/common/src/components/stateful/FileTree.js +40 -0
  42. package/dist/common/src/components/stateful/ProcessManagerPage.js +112 -0
  43. package/dist/common/src/components/stateful/ProjectPage.js +6 -5
  44. package/dist/common/src/components/stateful/ProjectsPage.js +32 -6
  45. package/dist/common/src/components/stateful/SettingsPage.js +72 -0
  46. package/dist/common/src/components/stateful/SingleProcessPage.js +147 -0
  47. package/dist/common/src/components/stateful/TestPage.js +104 -8
  48. package/dist/common/src/components/stateful/TextEditorPage.js +154 -0
  49. package/dist/common/src/esbuildConfigs/inputFilesPlugin.js +3 -4
  50. package/dist/common/src/lib/{abstractBase.js → BaseGiven.js} +14 -91
  51. package/dist/common/src/lib/BaseSuite.js +6 -3
  52. package/dist/common/src/lib/BaseSuite.test/mock.js +25 -34
  53. package/dist/common/src/lib/BaseSuite.test/test.js +33 -31
  54. package/dist/common/src/lib/BaseThen.js +64 -0
  55. package/dist/common/src/lib/BaseWhen.js +45 -0
  56. package/dist/common/src/lib/Tiposkripto.js +149 -0
  57. package/dist/common/src/lib/{core.test/MockCore.js → Tiposkripto.test/MockTiposkripto.js} +5 -8
  58. package/dist/common/src/lib/{core.test/core.test.adapter.js → Tiposkripto.test/Tiposkripto.adapter.js} +10 -8
  59. package/dist/common/src/lib/{classBuilder.test/classBuilder.test.implementation.js → Tiposkripto.test/Tiposkripto.implementation.js} +44 -61
  60. package/dist/common/src/lib/Tiposkripto.test/Tiposkripto.js +11 -0
  61. package/dist/common/src/lib/{classBuilder.test/classBuilder.test.specification.js → Tiposkripto.test/Tiposkripto.specification.js} +13 -9
  62. package/dist/common/src/lib/abstractBase.test/MockGiven.js +10 -3
  63. package/dist/common/src/lib/abstractBase.test/MockThen.js +6 -3
  64. package/dist/common/src/lib/abstractBase.test/MockWhen.js +10 -3
  65. package/dist/common/src/lib/abstractBase.test/adapter.js +18 -6
  66. package/dist/common/src/lib/abstractBase.test/implementation.js +3 -3
  67. package/dist/common/src/lib/index.js +11 -14
  68. package/dist/common/src/lib/mocks.test.js +10 -8
  69. package/dist/common/src/lib/pmProxy.js +37 -14
  70. package/dist/common/src/lib/pmProxy.test/adapter.js +12 -2
  71. package/dist/common/src/lib/pmProxy.test/implementation.js +73 -43
  72. package/dist/common/src/lib/pmProxy.test/specification.js +3 -0
  73. package/dist/common/src/run.js +15 -4
  74. package/dist/common/src/utils/api.js +44 -33
  75. package/dist/common/src/utils/logFiles.js +48 -22
  76. package/dist/common/src/utils/makePrompt.js +5 -4
  77. package/dist/common/testeranto.config.js +19 -41
  78. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  79. package/dist/module/design-editor/DesignEditor.js +206 -0
  80. package/dist/module/design-editor/index.js +2 -0
  81. package/dist/module/design-editor/server.js +92 -0
  82. package/dist/module/src/App.js +40 -6
  83. package/dist/module/src/Node.js +3 -2
  84. package/dist/module/src/PM/PM_WithEslintAndTsc.js +8 -1
  85. package/dist/module/src/PM/base.js +1 -0
  86. package/dist/module/src/PM/main.js +371 -5
  87. package/dist/module/src/PM/node.js +4 -2
  88. package/dist/module/src/PM/pure.js +15 -57
  89. package/dist/module/src/PM/web.js +5 -3
  90. package/dist/module/src/Pure.js +2 -2
  91. package/dist/module/src/Pure.test.js +46 -78
  92. package/dist/module/src/ReportServer.js +8 -2
  93. package/dist/module/src/Web.js +2 -2
  94. package/dist/module/src/build.js +1 -1
  95. package/dist/module/src/components/DesignEditorPage.js +168 -0
  96. package/dist/module/src/components/pure/AppFrame.js +30 -11
  97. package/dist/module/src/components/pure/ModalContent.test/implementation.js +13 -11
  98. package/dist/module/src/components/pure/ModalContent.test/index.js +48 -2
  99. package/dist/module/src/components/pure/ModalContent.test/specification.js +2 -2
  100. package/dist/module/src/components/pure/NavBar.js +10 -11
  101. package/dist/module/src/components/pure/ProcessManager.js +75 -0
  102. package/dist/module/src/components/pure/ProcessManagerView.js +200 -0
  103. package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +134 -106
  104. package/dist/module/src/components/pure/ProjectsPageView.js +20 -14
  105. package/dist/module/src/components/pure/SettingsButton.js +5 -42
  106. package/dist/module/src/components/pure/SingleProcessView.js +214 -0
  107. package/dist/module/src/components/pure/TestPageView.js +425 -76
  108. package/dist/module/src/components/pure/TestPageView.test/implementation.js +90 -135
  109. package/dist/module/src/components/stateful/FeaturesReporter.js +1 -1
  110. package/dist/module/src/components/stateful/FileTree.js +33 -0
  111. package/dist/module/src/components/stateful/ProcessManagerPage.js +75 -0
  112. package/dist/module/src/components/stateful/ProjectPage.js +6 -5
  113. package/dist/module/src/components/stateful/ProjectsPage.js +32 -6
  114. package/dist/module/src/components/stateful/SettingsPage.js +35 -0
  115. package/dist/module/src/components/stateful/SingleProcessPage.js +110 -0
  116. package/dist/module/src/components/stateful/TestPage.js +104 -8
  117. package/dist/module/src/components/stateful/TextEditorPage.js +117 -0
  118. package/dist/module/src/esbuildConfigs/inputFilesPlugin.js +3 -4
  119. package/dist/module/src/lib/{abstractBase.js → BaseGiven.js} +14 -89
  120. package/dist/module/src/lib/BaseSuite.js +6 -3
  121. package/dist/module/src/lib/BaseSuite.test/mock.js +22 -31
  122. package/dist/module/src/lib/BaseSuite.test/test.js +33 -31
  123. package/dist/module/src/lib/BaseThen.js +60 -0
  124. package/dist/module/src/lib/BaseWhen.js +41 -0
  125. package/dist/module/src/lib/Tiposkripto.js +146 -0
  126. package/dist/module/src/lib/{core.test/MockCore.js → Tiposkripto.test/MockTiposkripto.js} +3 -6
  127. package/dist/module/src/lib/{core.test/core.test.adapter.js → Tiposkripto.test/Tiposkripto.adapter.js} +10 -8
  128. package/dist/module/src/lib/{classBuilder.test/classBuilder.test.implementation.js → Tiposkripto.test/Tiposkripto.implementation.js} +44 -58
  129. package/dist/module/src/lib/Tiposkripto.test/Tiposkripto.js +6 -0
  130. package/dist/module/src/lib/{classBuilder.test/classBuilder.test.specification.js → Tiposkripto.test/Tiposkripto.specification.js} +12 -8
  131. package/dist/module/src/lib/abstractBase.test/MockGiven.js +9 -2
  132. package/dist/module/src/lib/abstractBase.test/MockThen.js +5 -2
  133. package/dist/module/src/lib/abstractBase.test/MockWhen.js +9 -2
  134. package/dist/module/src/lib/abstractBase.test/adapter.js +18 -6
  135. package/dist/module/src/lib/abstractBase.test/implementation.js +3 -3
  136. package/dist/module/src/lib/index.js +11 -14
  137. package/dist/module/src/lib/mocks.test.js +11 -5
  138. package/dist/module/src/lib/pmProxy.js +37 -14
  139. package/dist/module/src/lib/pmProxy.test/adapter.js +12 -2
  140. package/dist/module/src/lib/pmProxy.test/implementation.js +73 -43
  141. package/dist/module/src/lib/pmProxy.test/specification.js +3 -0
  142. package/dist/module/src/run.js +15 -4
  143. package/dist/module/src/utils/api.js +45 -34
  144. package/dist/module/src/utils/logFiles.js +45 -20
  145. package/dist/module/src/utils/makePrompt.js +5 -4
  146. package/dist/module/testeranto.config.js +19 -41
  147. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  148. package/dist/prebuild/App.css +54 -513
  149. package/dist/prebuild/App.js +5291 -1921
  150. package/dist/prebuild/ReportServer.mjs +104 -6
  151. package/dist/prebuild/build.mjs +8 -5
  152. package/dist/prebuild/run.mjs +414 -51
  153. package/dist/tsconfig.tsbuildinfo +1 -1
  154. package/dist/types/design-editor/DesignEditor.d.ts +18 -0
  155. package/dist/types/design-editor/server.d.ts +1 -0
  156. package/dist/types/{Node.d.ts → src/Node.d.ts} +2 -2
  157. package/dist/types/src/PM/__tests__/nodeSidecar.testeranto.d.ts +2 -0
  158. package/dist/types/src/PM/__tests__/pureSidecar.testeranto.d.ts +2 -0
  159. package/dist/types/src/PM/__tests__/webSidecar.testeranto.d.ts +2 -0
  160. package/dist/types/{PM → src/PM}/index.d.ts +1 -1
  161. package/dist/types/{PM → src/PM}/main.d.ts +19 -0
  162. package/dist/types/{PM → src/PM}/pure.d.ts +7 -7
  163. package/dist/types/{Pure.d.ts → src/Pure.d.ts} +2 -2
  164. package/dist/types/src/Pure.test.d.ts +2 -0
  165. package/dist/types/src/ReportServer.test.ts/index.d.ts +2 -0
  166. package/dist/types/{Types.d.ts → src/Types.d.ts} +3 -1
  167. package/dist/types/{Web.d.ts → src/Web.d.ts} +2 -2
  168. package/dist/types/src/components/DesignEditorPage.d.ts +1 -0
  169. package/dist/types/{components → src/components}/pure/AppFrame.d.ts +3 -1
  170. package/dist/types/src/components/pure/AppFrame.test/index.d.ts +3 -0
  171. package/dist/types/src/components/pure/FeaturesReporterView.test/index.d.ts +2 -0
  172. package/dist/types/src/components/pure/ModalContent.test/index.d.ts +2 -0
  173. package/dist/types/{components → src/components}/pure/NavBar.d.ts +4 -0
  174. package/dist/types/src/components/pure/ProcessManager.d.ts +8 -0
  175. package/dist/types/src/components/pure/ProcessManagerView.d.ts +20 -0
  176. package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +2 -0
  177. package/dist/types/{components → src/components}/pure/ProjectsPageView.d.ts +1 -1
  178. package/dist/types/src/components/pure/SettingsButton.d.ts +2 -0
  179. package/dist/types/{components → src/components}/pure/TestPageView.test/implementation.d.ts +3 -2
  180. package/dist/types/src/components/pure/TestPageView.test/index.d.ts +3 -0
  181. package/dist/types/src/components/stateful/FileTree.d.ts +8 -0
  182. package/dist/types/src/components/stateful/ProcessManagerPage.d.ts +2 -0
  183. package/dist/types/src/components/stateful/SettingsPage.d.ts +2 -0
  184. package/dist/types/src/components/stateful/SingleProcessPage.d.ts +2 -0
  185. package/dist/types/src/components/stateful/TextEditorPage.d.ts +1 -0
  186. package/dist/types/src/lib/BaseGiven.d.ts +44 -0
  187. package/dist/types/{lib → src/lib}/BaseSuite.d.ts +12 -7
  188. package/dist/types/{lib → src/lib}/BaseSuite.test/mock.d.ts +6 -4
  189. package/dist/types/src/lib/BaseSuite.test/node.test.d.ts +2 -0
  190. package/dist/types/src/lib/BaseSuite.test/pure.test.d.ts +2 -0
  191. package/dist/types/src/lib/BaseSuite.test/web.test.d.ts +2 -0
  192. package/dist/types/src/lib/BaseThen.d.ts +27 -0
  193. package/dist/types/src/lib/BaseWhen.d.ts +27 -0
  194. package/dist/types/src/lib/Tiposkripto.d.ts +35 -0
  195. package/dist/types/{lib/core.test/MockCore.d.ts → src/lib/Tiposkripto.test/MockTiposkripto.d.ts} +3 -3
  196. package/dist/types/{lib/core.test/core.test.adapter.d.ts → src/lib/Tiposkripto.test/Tiposkripto.adapter.d.ts} +1 -1
  197. package/dist/types/src/lib/Tiposkripto.test/Tiposkripto.d.ts +2 -0
  198. package/dist/types/{lib/core.test/core.test.implementation.d.ts → src/lib/Tiposkripto.test/Tiposkripto.implementation.d.ts} +1 -1
  199. package/dist/types/{lib/core.test/core.test.specification.d.ts → src/lib/Tiposkripto.test/Tiposkripto.specification.d.ts} +1 -1
  200. package/dist/types/{lib/classBuilder.test/classBuilder.test.types.d.ts → src/lib/Tiposkripto.test/Tiposkripto.types.d.ts} +11 -9
  201. package/dist/types/{lib → src/lib}/abstractBase.test/MockGiven.d.ts +3 -1
  202. package/dist/types/{lib → src/lib}/abstractBase.test/MockThen.d.ts +1 -1
  203. package/dist/types/{lib → src/lib}/abstractBase.test/MockWhen.d.ts +1 -1
  204. package/dist/types/src/lib/abstractBase.test/index.d.ts +2 -0
  205. package/dist/types/{lib → src/lib}/abstractBase.test/types.d.ts +3 -3
  206. package/dist/types/{lib → src/lib}/index.d.ts +2 -2
  207. package/dist/types/{lib → src/lib}/pmProxy.test/index.d.ts +1 -2
  208. package/dist/types/{lib → src/lib}/pmProxy.test/mockPMBase.d.ts +1 -1
  209. package/dist/types/{lib → src/lib}/types.d.ts +3 -1
  210. package/dist/types/src/mothership/test.d.ts +2 -0
  211. package/dist/types/src/utils/logFiles.d.ts +71 -0
  212. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  213. package/docs/test-page-components.md +91 -0
  214. package/package.json +29 -10
  215. package/src/App.tsx +38 -5
  216. package/src/Node.ts +3 -2
  217. package/src/PM/PM_WithEslintAndTsc.ts +9 -4
  218. package/src/PM/base.ts +1 -0
  219. package/src/PM/index.ts +1 -1
  220. package/src/PM/main.ts +425 -9
  221. package/src/PM/node.ts +5 -2
  222. package/src/PM/pure.ts +23 -61
  223. package/src/PM/web.ts +7 -3
  224. package/src/Pure.test.ts +63 -99
  225. package/src/Pure.ts +3 -2
  226. package/src/README.md +20 -1
  227. package/src/ReportServer.ts +10 -3
  228. package/src/Types.ts +5 -3
  229. package/src/Web.ts +2 -2
  230. package/src/app.scss +169 -0
  231. package/src/build.ts +5 -1
  232. package/src/components/DesignEditorPage.tsx +202 -0
  233. package/src/components/pure/AppFrame.tsx +121 -16
  234. package/src/components/pure/ModalContent.test/implementation.tsx +14 -12
  235. package/src/components/pure/ModalContent.test/index.tsx +58 -6
  236. package/src/components/pure/ModalContent.test/specification.ts +2 -2
  237. package/src/components/pure/NavBar.tsx +31 -15
  238. package/src/components/pure/ProcessManager.tsx +117 -0
  239. package/src/components/pure/ProcessManagerView.tsx +414 -0
  240. package/src/components/pure/ProjectPageView.test/implementation.tsx +136 -106
  241. package/src/components/pure/ProjectPageView.test/index.tsx +0 -2
  242. package/src/components/pure/ProjectsPageView.tsx +41 -31
  243. package/src/components/pure/SettingsButton.tsx +7 -62
  244. package/src/components/pure/SingleProcessView.tsx +235 -0
  245. package/src/components/pure/TestPageView.test/implementation.ts +115 -147
  246. package/src/components/pure/TestPageView.test/specification.ts +0 -1
  247. package/src/components/pure/TestPageView.tsx +821 -100
  248. package/src/components/stateful/FeaturesReporter.tsx +1 -1
  249. package/src/components/stateful/FileTree.tsx +66 -0
  250. package/src/components/stateful/ProcessManagerPage.tsx +108 -0
  251. package/src/components/stateful/ProjectPage.tsx +6 -5
  252. package/src/components/stateful/ProjectsPage.tsx +36 -7
  253. package/src/components/stateful/SettingsPage.tsx +82 -0
  254. package/src/components/stateful/SingleProcessPage.tsx +155 -0
  255. package/src/components/stateful/TestPage.tsx +128 -20
  256. package/src/components/stateful/TextEditorPage.tsx +170 -0
  257. package/src/esbuildConfigs/inputFilesPlugin.ts +3 -4
  258. package/src/lib/BaseGiven.ts +193 -0
  259. package/src/lib/BaseSuite.test/mock.ts +28 -42
  260. package/src/lib/BaseSuite.test/test.ts +38 -42
  261. package/src/lib/BaseSuite.ts +20 -4
  262. package/src/lib/BaseThen.ts +108 -0
  263. package/src/lib/BaseWhen.ts +91 -0
  264. package/src/lib/{core.test/MockCore.ts → Tiposkripto.test/MockTiposkripto.ts} +4 -7
  265. package/src/lib/{core.test/core.test.adapter.ts → Tiposkripto.test/Tiposkripto.adapter.ts} +12 -11
  266. package/src/lib/{classBuilder.test/classBuilder.test.implementation.ts → Tiposkripto.test/Tiposkripto.implementation.ts} +75 -78
  267. package/src/lib/Tiposkripto.test/Tiposkripto.specification.ts +109 -0
  268. package/src/lib/Tiposkripto.test/Tiposkripto.ts +15 -0
  269. package/src/lib/{classBuilder.test/classBuilder.test.types.ts → Tiposkripto.test/Tiposkripto.types.ts} +12 -9
  270. package/src/lib/Tiposkripto.ts +325 -0
  271. package/src/lib/abstractBase.test/MockGiven.ts +12 -2
  272. package/src/lib/abstractBase.test/MockThen.ts +7 -2
  273. package/src/lib/abstractBase.test/MockWhen.ts +10 -2
  274. package/src/lib/abstractBase.test/adapter.ts +20 -6
  275. package/src/lib/abstractBase.test/implementation.ts +6 -6
  276. package/src/lib/abstractBase.test/types.ts +3 -3
  277. package/src/lib/index.ts +26 -20
  278. package/src/lib/mocks.test.ts +10 -9
  279. package/src/lib/pmProxy.test/adapter.ts +10 -2
  280. package/src/lib/pmProxy.test/implementation.ts +108 -57
  281. package/src/lib/pmProxy.test/mockPMBase.ts +1 -1
  282. package/src/lib/pmProxy.test/specification.ts +11 -0
  283. package/src/lib/pmProxy.ts +40 -15
  284. package/src/lib/types.ts +3 -1
  285. package/src/run.ts +19 -4
  286. package/src/style.scss +3 -502
  287. package/src/templates/frontpage.html +317 -40
  288. package/src/templates/frontpage.md +79 -0
  289. package/src/themes.scss +40 -8
  290. package/src/utils/api.ts +47 -44
  291. package/src/utils/logFiles.ts +57 -23
  292. package/src/utils/makePrompt.ts +5 -4
  293. package/stargazers.txt +15 -0
  294. package/stargzers.js +68 -0
  295. package/testeranto/App.css +54 -513
  296. package/testeranto/App.js +5291 -1921
  297. package/testeranto/bundles/node/core/src/lib/BaseSuite.test/node.test.mjs +1146 -46
  298. package/testeranto/bundles/pure/core/src/lib/BaseSuite.test/pure.test.mjs +1016 -72
  299. package/testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs +1004 -86
  300. package/testeranto/metafiles/node/core.json +990 -0
  301. package/testeranto/{bundles/pure/core/metafile.json → metafiles/pure/core.json} +153 -309
  302. package/testeranto/{bundles/web/core/metafile.json → metafiles/web/core.json} +1075 -1825
  303. package/testeranto/reports/core/config.json +8 -64
  304. package/testeranto/reports/core/src/Pure.test/pure/prompt.txt +1 -1
  305. package/testeranto/reports/core/src/Pure.test/pure/type_errors.txt +63 -103
  306. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/error.log +61 -50
  307. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/prompt.txt +1 -1
  308. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/tests.json +24 -32
  309. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/type_errors.txt +17 -41
  310. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/error.log +22 -33
  311. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/info.log +0 -2
  312. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +13 -2
  313. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +1 -1
  314. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/tests.json +30 -41
  315. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +31 -77
  316. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/lint_errors.txt +47 -0
  317. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/prompt.txt +2 -3
  318. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/tests.json +17 -29
  319. package/testeranto/reports/core/src/components/pure/TestPageView.test/index/web/type_errors.txt +84 -96
  320. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/prompt.txt +3 -2
  321. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/tests.json +7 -9
  322. package/testeranto/reports/core/src/lib/BaseSuite.test/node.test/node/type_errors.txt +42 -99
  323. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +1 -1
  324. package/testeranto/reports/core/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +42 -99
  325. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/prompt.txt +1 -1
  326. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/tests.json +7 -9
  327. package/testeranto/reports/core/src/lib/BaseSuite.test/web.test/web/type_errors.txt +41 -98
  328. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/exit.log +1 -0
  329. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/prompt.txt +17 -0
  330. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/stderr.log +18 -0
  331. package/testeranto/reports/core/src/lib/TipoSkripto.test/TipoSkripto/node/type_errors.txt +32 -0
  332. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/exit.log +1 -1
  333. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/lint_errors.txt +6 -14
  334. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/prompt.txt +3 -3
  335. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stderr.log +66 -0
  336. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/stdout.log +10 -0
  337. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/type_errors.txt +21 -52
  338. package/testeranto/reports/core/summary.json +22 -71
  339. package/testeranto.config.ts +21 -45
  340. package/tsc.log +289 -449
  341. package/tsconfig.json +3 -2
  342. package/CNAME +0 -1
  343. package/README.html +0 -302
  344. package/dist/common/src/PM/layers/base/PM_Base.js +0 -1
  345. package/dist/common/src/PM/layers/base/components/PageOperations.js +0 -1
  346. package/dist/common/src/PM/layers/base/components/PageOperations.testeranto.js +0 -1
  347. package/dist/common/src/PM/layers/linting/components/Linter.js +0 -1
  348. package/dist/common/src/PM/layers/linting/components/TypeChecker.js +0 -1
  349. package/dist/common/src/PM/layers/main/components/SidecarManager.js +0 -1
  350. package/dist/common/src/PM/layers/main/components/TestRunner.js +0 -1
  351. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -19
  352. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +0 -113
  353. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.mock.js +0 -46
  354. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.node.js +0 -12
  355. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.pure.js +0 -12
  356. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.specification.js +0 -18
  357. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.web.js +0 -12
  358. package/dist/common/src/lib/basebuilder.js +0 -96
  359. package/dist/common/src/lib/classBuilder.js +0 -36
  360. package/dist/common/src/lib/classBuilder.test/classBuilder.test.adapter.js +0 -23
  361. package/dist/common/src/lib/classBuilder.test/classBuilder.test.js +0 -12
  362. package/dist/common/src/lib/classBuilder.test/mock.js +0 -17
  363. package/dist/common/src/lib/core.js +0 -47
  364. package/dist/common/src/lib/core.test/core.test.implementation.js +0 -121
  365. package/dist/common/src/lib/core.test/core.test.js +0 -63
  366. package/dist/common/src/lib/core.test/core.test.specification.js +0 -53
  367. package/dist/common/src/lib/core.test/core.test.types.js +0 -2
  368. package/dist/module/src/PM/layers/base/PM_Base.js +0 -1
  369. package/dist/module/src/PM/layers/base/components/PageOperations.js +0 -1
  370. package/dist/module/src/PM/layers/base/components/PageOperations.testeranto.js +0 -1
  371. package/dist/module/src/PM/layers/linting/components/Linter.js +0 -1
  372. package/dist/module/src/PM/layers/linting/components/TypeChecker.js +0 -1
  373. package/dist/module/src/PM/layers/main/components/SidecarManager.js +0 -1
  374. package/dist/module/src/PM/layers/main/components/TestRunner.js +0 -1
  375. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.adapter.js +0 -16
  376. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +0 -110
  377. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.mock.js +0 -42
  378. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.node.js +0 -7
  379. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.pure.js +0 -7
  380. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.specification.js +0 -14
  381. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.web.js +0 -7
  382. package/dist/module/src/lib/basebuilder.js +0 -92
  383. package/dist/module/src/lib/classBuilder.js +0 -32
  384. package/dist/module/src/lib/classBuilder.test/classBuilder.test.adapter.js +0 -20
  385. package/dist/module/src/lib/classBuilder.test/classBuilder.test.js +0 -7
  386. package/dist/module/src/lib/classBuilder.test/mock.js +0 -14
  387. package/dist/module/src/lib/core.js +0 -44
  388. package/dist/module/src/lib/core.test/core.test.implementation.js +0 -118
  389. package/dist/module/src/lib/core.test/core.test.js +0 -58
  390. package/dist/module/src/lib/core.test/core.test.specification.js +0 -49
  391. package/dist/module/src/lib/core.test/core.test.types.js +0 -1
  392. package/dist/types/PM/__tests__/nodeSidecar.testeranto.d.ts +0 -16
  393. package/dist/types/PM/__tests__/pureSidecar.testeranto.d.ts +0 -16
  394. package/dist/types/PM/__tests__/webSidecar.testeranto.d.ts +0 -16
  395. package/dist/types/PM/layers/base/components/PageOperations.testeranto.d.ts +0 -0
  396. package/dist/types/PM/layers/linting/components/Linter.d.ts +0 -0
  397. package/dist/types/PM/layers/linting/components/TypeChecker.d.ts +0 -0
  398. package/dist/types/PM/layers/main/components/SidecarManager.d.ts +0 -0
  399. package/dist/types/PM/layers/main/components/TestRunner.d.ts +0 -0
  400. package/dist/types/Pure.test.d.ts +0 -47
  401. package/dist/types/ReportServer.test.ts/index.d.ts +0 -29
  402. package/dist/types/components/pure/AppFrame.test/index.d.ts +0 -5
  403. package/dist/types/components/pure/FeaturesReporterView.test/index.d.ts +0 -2
  404. package/dist/types/components/pure/ModalContent.test/index.d.ts +0 -2
  405. package/dist/types/components/pure/ProjectPageView.test/index.d.ts +0 -2
  406. package/dist/types/components/pure/SettingsButton.d.ts +0 -3
  407. package/dist/types/components/pure/TestPageView.test/index.d.ts +0 -32
  408. package/dist/types/lib/BaseSuite.test/node.test.d.ts +0 -3
  409. package/dist/types/lib/BaseSuite.test/pure.test.d.ts +0 -3
  410. package/dist/types/lib/BaseSuite.test/web.test.d.ts +0 -3
  411. package/dist/types/lib/abstractBase.d.ts +0 -70
  412. package/dist/types/lib/abstractBase.test/index.d.ts +0 -3
  413. package/dist/types/lib/baseBuilder.test/baseBuilder.test.adapter.d.ts +0 -3
  414. package/dist/types/lib/baseBuilder.test/baseBuilder.test.implementation.d.ts +0 -3
  415. package/dist/types/lib/baseBuilder.test/baseBuilder.test.mock.d.ts +0 -15
  416. package/dist/types/lib/baseBuilder.test/baseBuilder.test.node.d.ts +0 -3
  417. package/dist/types/lib/baseBuilder.test/baseBuilder.test.pure.d.ts +0 -3
  418. package/dist/types/lib/baseBuilder.test/baseBuilder.test.specification.d.ts +0 -3
  419. package/dist/types/lib/baseBuilder.test/baseBuilder.test.types.d.ts +0 -22
  420. package/dist/types/lib/baseBuilder.test/baseBuilder.test.web.d.ts +0 -3
  421. package/dist/types/lib/basebuilder.d.ts +0 -23
  422. package/dist/types/lib/classBuilder.d.ts +0 -15
  423. package/dist/types/lib/classBuilder.test/classBuilder.test.adapter.d.ts +0 -3
  424. package/dist/types/lib/classBuilder.test/classBuilder.test.d.ts +0 -3
  425. package/dist/types/lib/classBuilder.test/classBuilder.test.implementation.d.ts +0 -3
  426. package/dist/types/lib/classBuilder.test/classBuilder.test.specification.d.ts +0 -3
  427. package/dist/types/lib/classBuilder.test/mock.d.ts +0 -14
  428. package/dist/types/lib/core.d.ts +0 -12
  429. package/dist/types/lib/core.test/core.test.d.ts +0 -3
  430. package/dist/types/lib/core.test/core.test.types.d.ts +0 -46
  431. package/dist/types/lib/mocks.test.d.ts +0 -2
  432. package/dist/types/mothership/test.d.ts +0 -19
  433. package/dist/types/utils/logFiles.d.ts +0 -7
  434. package/docs.html +0 -590
  435. package/example.css +0 -351
  436. package/index.html +0 -138
  437. package/scripts/compile-docs.js +0 -150
  438. package/smil30/SMIL-anim.mod.xsd +0 -163
  439. package/smil30/SMIL-control.mod.xsd +0 -73
  440. package/smil30/SMIL-layout.mod.xsd +0 -149
  441. package/smil30/SMIL-link.mod.xsd +0 -145
  442. package/smil30/SMIL-media.mod.xsd +0 -1646
  443. package/smil30/SMIL-metainformation.mod.xsd +0 -45
  444. package/smil30/SMIL-smiltext.mod.xsd +0 -353
  445. package/smil30/SMIL-state.mod.xsd +0 -133
  446. package/smil30/SMIL-struct.mod.xsd +0 -70
  447. package/smil30/SMIL-timing.mod.xsd +0 -105
  448. package/smil30/SMIL-transition.mod.xsd +0 -229
  449. package/smil30/SMIL.xsd +0 -63
  450. package/smil30/its.xsd +0 -42
  451. package/smil30/smil-attribs-1.mod.xsd +0 -610
  452. package/smil30/smil-datatypes-1.mod.xsd +0 -72
  453. package/smil30/smil-framework-1.mod.xsd +0 -45
  454. package/smil30/xml.xsd +0 -16
  455. package/src/App.scss +0 -123
  456. package/src/PM/layers/base/PM_Base.ts +0 -0
  457. package/src/PM/layers/base/components/PageOperations.testeranto.ts +0 -0
  458. package/src/PM/layers/base/components/PageOperations.ts +0 -0
  459. package/src/PM/layers/linting/components/Linter.ts +0 -0
  460. package/src/PM/layers/linting/components/TypeChecker.ts +0 -0
  461. package/src/PM/layers/main/components/SidecarManager.ts +0 -0
  462. package/src/PM/layers/main/components/TestRunner.ts +0 -0
  463. package/src/fonts.scss +0 -55
  464. package/src/lib/abstractBase.ts +0 -332
  465. package/src/lib/baseBuilder.test/baseBuilder.test.adapter.ts +0 -22
  466. package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +0 -138
  467. package/src/lib/baseBuilder.test/baseBuilder.test.mock.ts +0 -90
  468. package/src/lib/baseBuilder.test/baseBuilder.test.node.ts +0 -16
  469. package/src/lib/baseBuilder.test/baseBuilder.test.pure.ts +0 -16
  470. package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +0 -35
  471. package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +0 -36
  472. package/src/lib/baseBuilder.test/baseBuilder.test.web.ts +0 -16
  473. package/src/lib/basebuilder.ts +0 -192
  474. package/src/lib/classBuilder.test/classBuilder.test.adapter.ts +0 -25
  475. package/src/lib/classBuilder.test/classBuilder.test.specification.ts +0 -104
  476. package/src/lib/classBuilder.test/classBuilder.test.ts +0 -14
  477. package/src/lib/classBuilder.test/mock.ts +0 -83
  478. package/src/lib/classBuilder.ts +0 -122
  479. package/src/lib/core.test/core.test.implementation.ts +0 -155
  480. package/src/lib/core.test/core.test.specification.ts +0 -113
  481. package/src/lib/core.test/core.test.ts +0 -72
  482. package/src/lib/core.test/core.test.types.ts +0 -68
  483. package/src/lib/core.ts +0 -141
  484. package/style.css +0 -12175
  485. package/testeranto/bundles/node/core/chunk-JBB5E3XJ.mjs +0 -258
  486. package/testeranto/bundles/node/core/chunk-L67RWZ4W.mjs +0 -899
  487. package/testeranto/bundles/node/core/chunk-ZQRRQYS4.mjs +0 -92
  488. package/testeranto/bundles/node/core/metafile.json +0 -5735
  489. package/testeranto/bundles/node/core/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +0 -247
  490. package/testeranto/bundles/node/core/src/lib/classBuilder.test/classBuilder.test.mjs +0 -423
  491. package/testeranto/bundles/node/core/src/lib/core.test/core.test.mjs +0 -505
  492. package/testeranto/bundles/node/core/src/lib/pmProxy.test/index.mjs +0 -4804
  493. package/testeranto/bundles/node/core/src/mothership/test.mjs +0 -24588
  494. package/testeranto/bundles/pure/core/chunk-KHJ35R7C.mjs +0 -997
  495. package/testeranto/bundles/pure/core/src/Pure.test.mjs +0 -428
  496. package/testeranto/bundles/pure/core/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +0 -235
  497. package/testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf +0 -0
  498. package/testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf +0 -0
  499. package/testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf +0 -0
  500. package/testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf +0 -0
  501. package/testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf +0 -0
  502. package/testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf +0 -0
  503. package/testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf +0 -0
  504. package/testeranto/bundles/web/core/chunk-BADF3AZF.mjs +0 -108
  505. package/testeranto/bundles/web/core/chunk-BXV27S2S.mjs +0 -6252
  506. package/testeranto/bundles/web/core/chunk-EIYZKF2C.mjs +0 -223
  507. package/testeranto/bundles/web/core/chunk-FNXFUNA7.mjs +0 -28528
  508. package/testeranto/bundles/web/core/chunk-LU364HVS.mjs +0 -3311
  509. package/testeranto/bundles/web/core/chunk-QWII7WIM.mjs +0 -2281
  510. package/testeranto/bundles/web/core/chunk-VAYOSMXI.mjs +0 -21775
  511. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.css +0 -12105
  512. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.html +0 -15
  513. package/testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.mjs +0 -517
  514. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.html +0 -15
  515. package/testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs +0 -166
  516. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css +0 -12105
  517. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.html +0 -15
  518. package/testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.mjs +0 -93
  519. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css +0 -12105
  520. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.html +0 -15
  521. package/testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs +0 -343
  522. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.css +0 -12105
  523. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.html +0 -15
  524. package/testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs +0 -483
  525. package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.html +0 -15
  526. package/testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +0 -256
  527. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/debug.log +0 -0
  528. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/error.log +0 -22
  529. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/exit.log +0 -1
  530. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/info.log +0 -4
  531. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/lint_errors.txt +0 -2
  532. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/prompt.txt +0 -18
  533. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/tests.json +0 -57
  534. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/type_errors.txt +0 -55
  535. package/testeranto/reports/core/src/components/pure/AppFrame.test/index/web/warn.log +0 -0
  536. package/testeranto/reports/core/src/components/pure/FeaturesReporterView.test/index/web/suite-0/given-basicRender/then-4/butThen/features-reporter.png +0 -0
  537. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/debug.log +0 -0
  538. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/error.log +0 -0
  539. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/exit.log +0 -0
  540. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/info.log +0 -4
  541. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/message.txt +0 -17
  542. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/prompt.txt +0 -15
  543. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/suite-0/given-basicRender/then-2/butThen/modal-content.png +0 -0
  544. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/tests.json +0 -42
  545. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/type_errors.txt +0 -65
  546. package/testeranto/reports/core/src/components/pure/ModalContent.test/index/web/warn.log +0 -0
  547. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-6/butThen/happy-state.png +0 -0
  548. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-errorHandling/then-1/butThen/error-state.png +0 -0
  549. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/exit.log +0 -1
  550. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -0
  551. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +0 -17
  552. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +0 -17
  553. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stderr.log +0 -0
  554. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/stdout.log +0 -2
  555. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
  556. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +0 -1
  557. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +0 -71
  558. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +0 -65
  559. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/exit.log +0 -0
  560. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -0
  561. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +0 -17
  562. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +0 -17
  563. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +0 -65
  564. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/debug.log +0 -0
  565. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/error.log +0 -1
  566. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/exit.log +0 -1
  567. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/info.log +0 -0
  568. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -0
  569. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +0 -17
  570. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +0 -17
  571. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-0/butThen/hello.txt +0 -1
  572. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/suite-0/given-testInitialization/then-1/butThen/artifact_test.txt +0 -1
  573. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +0 -71
  574. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +0 -65
  575. package/testeranto/reports/core/src/lib/baseBuilder.test/baseBuilder.test.web/web/warn.log +0 -0
  576. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/exit.log +0 -1
  577. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.txt +0 -0
  578. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/message.txt +0 -17
  579. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +0 -17
  580. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stderr.log +0 -0
  581. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/stdout.log +0 -619
  582. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/tests.json +0 -165
  583. package/testeranto/reports/core/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +0 -140
  584. package/testeranto/reports/core/src/lib/core.test/core.test/node/exit.log +0 -1
  585. package/testeranto/reports/core/src/lib/core.test/core.test/node/lint_errors.txt +0 -21
  586. package/testeranto/reports/core/src/lib/core.test/core.test/node/message.txt +0 -17
  587. package/testeranto/reports/core/src/lib/core.test/core.test/node/prompt.txt +0 -19
  588. package/testeranto/reports/core/src/lib/core.test/core.test/node/stderr.log +0 -0
  589. package/testeranto/reports/core/src/lib/core.test/core.test/node/type_errors.txt +0 -64
  590. package/testeranto/reports/core/src/lib/pmProxy.test/index/node/tests.json +0 -162
  591. package/testeranto/reports/core/src/mothership/test/node/exit.log +0 -1
  592. package/testeranto/reports/core/src/mothership/test/node/lint_errors.txt +0 -0
  593. package/testeranto/reports/core/src/mothership/test/node/message.txt +0 -17
  594. package/testeranto/reports/core/src/mothership/test/node/prompt.txt +0 -14
  595. package/testeranto/reports/core/src/mothership/test/node/stderr.log +0 -27
  596. package/testeranto/reports/core/src/mothership/test/node/stdout.log +0 -8
  597. package/testeranto/reports/core/src/mothership/test/node/tests.json +0 -36
  598. package/testeranto/reports/core/src/mothership/test/node/type_errors.txt +0 -38
  599. package/videos/download-smil-xsd.sh +0 -29
  600. package/videos/project0/index.md +0 -72
  601. package/videos/project0/narration.json +0 -7
  602. package/videos/project0/narration.ssml +0 -58
  603. package/videos/project0/package.json +0 -21
  604. package/videos/project0/presentation.smil +0 -25
  605. package/videos/project0/smil30/SMIL-anim.mod.xsd +0 -163
  606. package/videos/project0/smil30/SMIL-anim.mod.xsd.1 +0 -163
  607. package/videos/project0/smil30/SMIL-anim.mod.xsd.2 +0 -163
  608. package/videos/project0/smil30/SMIL-control.mod.xsd +0 -73
  609. package/videos/project0/smil30/SMIL-control.mod.xsd.1 +0 -73
  610. package/videos/project0/smil30/SMIL-control.mod.xsd.2 +0 -73
  611. package/videos/project0/smil30/SMIL-layout.mod.xsd +0 -149
  612. package/videos/project0/smil30/SMIL-layout.mod.xsd.1 +0 -149
  613. package/videos/project0/smil30/SMIL-layout.mod.xsd.2 +0 -149
  614. package/videos/project0/smil30/SMIL-link.mod.xsd +0 -145
  615. package/videos/project0/smil30/SMIL-link.mod.xsd.1 +0 -145
  616. package/videos/project0/smil30/SMIL-link.mod.xsd.2 +0 -145
  617. package/videos/project0/smil30/SMIL-media.mod.xsd +0 -1646
  618. package/videos/project0/smil30/SMIL-media.mod.xsd.1 +0 -1646
  619. package/videos/project0/smil30/SMIL-media.mod.xsd.2 +0 -1646
  620. package/videos/project0/smil30/SMIL-metainformation.mod.xsd +0 -45
  621. package/videos/project0/smil30/SMIL-metainformation.mod.xsd.1 +0 -45
  622. package/videos/project0/smil30/SMIL-metainformation.mod.xsd.2 +0 -45
  623. package/videos/project0/smil30/SMIL-smiltext.mod.xsd +0 -353
  624. package/videos/project0/smil30/SMIL-smiltext.mod.xsd.1 +0 -353
  625. package/videos/project0/smil30/SMIL-smiltext.mod.xsd.2 +0 -353
  626. package/videos/project0/smil30/SMIL-state.mod.xsd +0 -133
  627. package/videos/project0/smil30/SMIL-state.mod.xsd.1 +0 -133
  628. package/videos/project0/smil30/SMIL-state.mod.xsd.2 +0 -133
  629. package/videos/project0/smil30/SMIL-struct.mod.xsd +0 -70
  630. package/videos/project0/smil30/SMIL-struct.mod.xsd.1 +0 -70
  631. package/videos/project0/smil30/SMIL-struct.mod.xsd.2 +0 -70
  632. package/videos/project0/smil30/SMIL-timing.mod.xsd +0 -105
  633. package/videos/project0/smil30/SMIL-timing.mod.xsd.1 +0 -105
  634. package/videos/project0/smil30/SMIL-timing.mod.xsd.2 +0 -105
  635. package/videos/project0/smil30/SMIL-transition.mod.xsd +0 -229
  636. package/videos/project0/smil30/SMIL-transition.mod.xsd.1 +0 -229
  637. package/videos/project0/smil30/SMIL-transition.mod.xsd.2 +0 -229
  638. package/videos/project0/smil30/SMIL.xsd +0 -63
  639. package/videos/project0/smil30/SMIL.xsd.1 +0 -63
  640. package/videos/project0/smil30/SMIL.xsd.2 +0 -63
  641. package/videos/project0/smil30/its.xsd +0 -42
  642. package/videos/project0/smil30/its.xsd.1 +0 -42
  643. package/videos/project0/smil30/its.xsd.2 +0 -42
  644. package/videos/project0/smil30/smil-attribs-1.mod.xsd +0 -610
  645. package/videos/project0/smil30/smil-attribs-1.mod.xsd.1 +0 -610
  646. package/videos/project0/smil30/smil-attribs-1.mod.xsd.2 +0 -610
  647. package/videos/project0/smil30/smil-datatypes-1.mod.xsd +0 -72
  648. package/videos/project0/smil30/smil-datatypes-1.mod.xsd.1 +0 -72
  649. package/videos/project0/smil30/smil-datatypes-1.mod.xsd.2 +0 -72
  650. package/videos/project0/smil30/smil-framework-1.mod.xsd +0 -45
  651. package/videos/project0/smil30/smil-framework-1.mod.xsd.1 +0 -45
  652. package/videos/project0/smil30/smil-framework-1.mod.xsd.2 +0 -45
  653. package/videos/project0/smil30/smil-profile-model-1.mod.xsd +0 -1331
  654. package/videos/project0/smil30/smil-profile-model-1.mod.xsd.1 +0 -1331
  655. package/videos/project0/smil30/smil-qname-1.mod.xsd +0 -121
  656. package/videos/project0/smil30/smil-qname-1.mod.xsd.1 +0 -121
  657. package/videos/project0/smil30/xml.xsd +0 -16
  658. package/videos/project0/smil30/xml.xsd.1 +0 -16
  659. package/videos/project0/smil30/xml.xsd.2 +0 -16
  660. package/videos/project0/smil30.xsd +0 -137
  661. package/videos/project0/src/audio/metadata.json +0 -5
  662. package/videos/project0/src/audio/narration.mp3 +0 -0
  663. package/videos/project0/src/motion-canvas.d.ts +0 -1
  664. package/videos/project0/src/project.meta +0 -31
  665. package/videos/project0/src/project.ts +0 -13
  666. package/videos/project0/src/scenes/example.meta +0 -5
  667. package/videos/project0/src/scenes/scene1.meta +0 -3
  668. package/videos/project0/src/scenes/scene1.tsx +0 -129
  669. package/videos/project0/src/scenes/scene2.tsx +0 -132
  670. package/videos/project0/src/scenes/scene3.meta +0 -26
  671. package/videos/project0/src/scenes/scene3.tsx +0 -188
  672. package/videos/project0/tsconfig.json +0 -4
  673. package/videos/project0/vite.config.ts +0 -10
  674. package/videos/trash/output/project.mp4 +0 -0
  675. package/videos/trash/text.mp4 +0 -0
  676. package/videos/trash/video/project.tsx +0 -549
  677. package/videos/trash/video/render.ts +0 -15
  678. package/videos/trash/vite.config.ts +0 -10
  679. package/videos/tts.js +0 -109
  680. /package/dist/common/{src/lib/baseBuilder.test/baseBuilder.test.types.js → design-editor/types.js} +0 -0
  681. /package/dist/common/src/lib/{classBuilder.test/classBuilder.test.types.js → Tiposkripto.test/Tiposkripto.types.js} +0 -0
  682. /package/dist/module/{src/lib/baseBuilder.test/baseBuilder.test.types.js → design-editor/types.js} +0 -0
  683. /package/dist/module/src/lib/{classBuilder.test/classBuilder.test.types.js → Tiposkripto.test/Tiposkripto.types.js} +0 -0
  684. /package/dist/types/{App.d.ts → src/App.d.ts} +0 -0
  685. /package/dist/types/{CoreTypes.d.ts → src/CoreTypes.d.ts} +0 -0
  686. /package/dist/types/{Init.d.ts → src/Init.d.ts} +0 -0
  687. /package/dist/types/{NodeSidecar.d.ts → src/NodeSidecar.d.ts} +0 -0
  688. /package/dist/types/{PM → src/PM}/PM_WithEslintAndTsc.d.ts +0 -0
  689. /package/dist/types/{PM → src/PM}/base.d.ts +0 -0
  690. /package/dist/types/{PM → src/PM}/node.d.ts +0 -0
  691. /package/dist/types/{PM → src/PM}/nodeSidecar.d.ts +0 -0
  692. /package/dist/types/{PM → src/PM}/pureSidecar.d.ts +0 -0
  693. /package/dist/types/{PM → src/PM}/sidecar.d.ts +0 -0
  694. /package/dist/types/{PM → src/PM}/types.d.ts +0 -0
  695. /package/dist/types/{PM → src/PM}/web.d.ts +0 -0
  696. /package/dist/types/{PM → src/PM}/webSidecar.d.ts +0 -0
  697. /package/dist/types/{PureSidecar.d.ts → src/PureSidecar.d.ts} +0 -0
  698. /package/dist/types/{ReportServer.d.ts → src/ReportServer.d.ts} +0 -0
  699. /package/dist/types/{ReportServerLib.d.ts → src/ReportServerLib.d.ts} +0 -0
  700. /package/dist/types/{WebSidecar.d.ts → src/WebSidecar.d.ts} +0 -0
  701. /package/dist/types/{build.d.ts → src/build.d.ts} +0 -0
  702. /package/dist/types/{components → src/components}/SunriseAnimation.d.ts +0 -0
  703. /package/dist/types/{components → src/components}/SunriseAnimation.test/implementation.d.ts +0 -0
  704. /package/dist/types/{components → src/components}/SunriseAnimation.test/index.d.ts +0 -0
  705. /package/dist/types/{components → src/components}/SunriseAnimation.test/interface.d.ts +0 -0
  706. /package/dist/types/{components → src/components}/SunriseAnimation.test/specification.d.ts +0 -0
  707. /package/dist/types/{components → src/components}/SunriseAnimation.test/types.d.ts +0 -0
  708. /package/dist/types/{components → src/components}/TestStatusBadge.d.ts +0 -0
  709. /package/dist/types/{components → src/components}/pure/AppFrame.test/implementation.d.ts +0 -0
  710. /package/dist/types/{components → src/components}/pure/AppFrame.test/specification.d.ts +0 -0
  711. /package/dist/types/{components → src/components}/pure/AppFrame.test/types.d.ts +0 -0
  712. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.d.ts +0 -0
  713. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/implementation.d.ts +0 -0
  714. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/specification.d.ts +0 -0
  715. /package/dist/types/{components → src/components}/pure/FeaturesReporterView.test/types.d.ts +0 -0
  716. /package/dist/types/{components → src/components}/pure/ModalContent.d.ts +0 -0
  717. /package/dist/types/{components → src/components}/pure/ModalContent.test/implementation.d.ts +0 -0
  718. /package/dist/types/{components → src/components}/pure/ModalContent.test/specification.d.ts +0 -0
  719. /package/dist/types/{components → src/components}/pure/ModalContent.test/types.d.ts +0 -0
  720. /package/dist/types/{components → src/components}/pure/ProjectPageView.d.ts +0 -0
  721. /package/dist/types/{components → src/components}/pure/ProjectPageView.test/implementation.d.ts +0 -0
  722. /package/dist/types/{components → src/components}/pure/ProjectPageView.test/specification.d.ts +0 -0
  723. /package/dist/types/{components → src/components}/pure/ProjectPageView.test/types.d.ts +0 -0
  724. /package/dist/types/{PM/layers/base/PM_Base.d.ts → src/components/pure/SingleProcessView.d.ts} +0 -0
  725. /package/dist/types/{components → src/components}/pure/TestPageView.d.ts +0 -0
  726. /package/dist/types/{components → src/components}/pure/TestPageView.test/specification.d.ts +0 -0
  727. /package/dist/types/{components → src/components}/pure/TestPageView.test/types.d.ts +0 -0
  728. /package/dist/types/{components → src/components}/pure/ThemeCard.d.ts +0 -0
  729. /package/dist/types/{components → src/components}/stateful/FeaturesReporter.d.ts +0 -0
  730. /package/dist/types/{components → src/components}/stateful/ProjectPage.d.ts +0 -0
  731. /package/dist/types/{components → src/components}/stateful/ProjectsPage.d.ts +0 -0
  732. /package/dist/types/{components → src/components}/stateful/TestPage.d.ts +0 -0
  733. /package/dist/types/{defaultConfig.d.ts → src/defaultConfig.d.ts} +0 -0
  734. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/consoleDetectorPlugin.d.ts +0 -0
  735. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/eslint-formatter-testeranto.d.ts +0 -0
  736. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/featuresPlugin.d.ts +0 -0
  737. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/index.d.ts +0 -0
  738. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/inputFilesPlugin.d.ts +0 -0
  739. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/nativeImportDetectorPlugin.d.ts +0 -0
  740. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/node.d.ts +0 -0
  741. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/pure.d.ts +0 -0
  742. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/rebuildPlugin.d.ts +0 -0
  743. /package/dist/types/{esbuildConfigs → src/esbuildConfigs}/web.d.ts +0 -0
  744. /package/dist/types/{init-docs.d.ts → src/init-docs.d.ts} +0 -0
  745. /package/dist/types/{lib → src/lib}/BaseSuite.test/test.d.ts +0 -0
  746. /package/dist/types/{lib → src/lib}/Sidecar.d.ts +0 -0
  747. /package/dist/types/{lib → src/lib}/abstractBase.test/adapter.d.ts +0 -0
  748. /package/dist/types/{lib → src/lib}/abstractBase.test/implementation.d.ts +0 -0
  749. /package/dist/types/{lib → src/lib}/abstractBase.test/specification.d.ts +0 -0
  750. /package/dist/types/{PM/layers/base/components/PageOperations.d.ts → src/lib/mocks.test.d.ts} +0 -0
  751. /package/dist/types/{lib → src/lib}/pmProxy.d.ts +0 -0
  752. /package/dist/types/{lib → src/lib}/pmProxy.test/adapter.d.ts +0 -0
  753. /package/dist/types/{lib → src/lib}/pmProxy.test/implementation.d.ts +0 -0
  754. /package/dist/types/{lib → src/lib}/pmProxy.test/mockPM.d.ts +0 -0
  755. /package/dist/types/{lib → src/lib}/pmProxy.test/specification.d.ts +0 -0
  756. /package/dist/types/{lib → src/lib}/pmProxy.test/types.d.ts +0 -0
  757. /package/dist/types/{mothership → src/mothership}/index.d.ts +0 -0
  758. /package/dist/types/{run.d.ts → src/run.d.ts} +0 -0
  759. /package/dist/types/{types → src/types}/features.d.ts +0 -0
  760. /package/dist/types/{utils → src/utils}/api.d.ts +0 -0
  761. /package/dist/types/{utils → src/utils}/buildTemplates.d.ts +0 -0
  762. /package/dist/types/{utils → src/utils}/featureUtils.d.ts +0 -0
  763. /package/dist/types/{utils → src/utils}/makePrompt.d.ts +0 -0
  764. /package/dist/types/{utils → src/utils}/queue.d.ts +0 -0
  765. /package/dist/types/{utils.d.ts → src/utils.d.ts} +0 -0
  766. /package/dist/types/{web.html.d.ts → src/web.html.d.ts} +0 -0
  767. /package/testeranto/reports/core/src/{components/pure/ModalContent.test/index/web → lib/TipoSkripto.test/TipoSkripto/node}/lint_errors.txt +0 -0
  768. /package/testeranto/reports/core/src/{components/pure/AppFrame.test/index/web → lib/TipoSkripto.test/TipoSkripto/node}/message.txt +0 -0
  769. /package/testeranto/reports/core/src/lib/{core.test/core.test → TipoSkripto.test/TipoSkripto}/node/stdout.log +0 -0
@@ -4,7 +4,7 @@
4
4
  {
5
5
  "detail": {
6
6
  "deprecation": true,
7
- "stack": "node_modules/bootstrap/scss/_functions.scss 11:30 -assert-ascending()\nnode_modules/bootstrap/scss/_variables.scss 494:1 @import\nnode_modules/bootstrap/scss/bootstrap.scss 8:9 @import\nsrc/style.scss 1:9 @use\n- 1:1 root stylesheet\n"
7
+ "stack": "node_modules/bootstrap/scss/_functions.scss 11:30 -assert-ascending()\nnode_modules/bootstrap/scss/_variables.scss 494:1 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
8
8
  },
9
9
  "id": "",
10
10
  "location": {
@@ -36,7 +36,7 @@
36
36
  {
37
37
  "detail": {
38
38
  "deprecation": true,
39
- "stack": "node_modules/bootstrap/scss/_functions.scss 11:51 -assert-ascending()\nnode_modules/bootstrap/scss/_variables.scss 494:1 @import\nnode_modules/bootstrap/scss/bootstrap.scss 8:9 @import\nsrc/style.scss 1:9 @use\n- 1:1 root stylesheet\n"
39
+ "stack": "node_modules/bootstrap/scss/_functions.scss 11:51 -assert-ascending()\nnode_modules/bootstrap/scss/_variables.scss 494:1 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
40
40
  },
41
41
  "id": "",
42
42
  "location": {
@@ -68,7 +68,7 @@
68
68
  {
69
69
  "detail": {
70
70
  "deprecation": true,
71
- "stack": "node_modules/bootstrap/scss/_functions.scss 37:11 to-rgb()\nnode_modules/bootstrap/scss/_variables.scss 846:31 @import\nnode_modules/bootstrap/scss/bootstrap.scss 8:9 @import\nsrc/style.scss 1:9 @use\n- 1:1 root stylesheet\n"
71
+ "stack": "node_modules/bootstrap/scss/_functions.scss 37:11 to-rgb()\nnode_modules/bootstrap/scss/_variables.scss 846:31 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
72
72
  },
73
73
  "id": "",
74
74
  "location": {
@@ -100,7 +100,7 @@
100
100
  {
101
101
  "detail": {
102
102
  "deprecation": true,
103
- "stack": "node_modules/bootstrap/scss/_functions.scss 37:24 to-rgb()\nnode_modules/bootstrap/scss/_variables.scss 846:31 @import\nnode_modules/bootstrap/scss/bootstrap.scss 8:9 @import\nsrc/style.scss 1:9 @use\n- 1:1 root stylesheet\n"
103
+ "stack": "node_modules/bootstrap/scss/_functions.scss 37:24 to-rgb()\nnode_modules/bootstrap/scss/_variables.scss 846:31 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
104
104
  },
105
105
  "id": "",
106
106
  "location": {
@@ -132,7 +132,7 @@
132
132
  {
133
133
  "detail": {
134
134
  "deprecation": true,
135
- "stack": "node_modules/bootstrap/scss/_functions.scss 185:10 luminance()\nnode_modules/bootstrap/scss/_functions.scss 174:8 contrast-ratio()\nnode_modules/bootstrap/scss/_functions.scss 159:22 color-contrast()\nnode_modules/bootstrap/scss/_variables.scss 846:42 @import\nnode_modules/bootstrap/scss/bootstrap.scss 8:9 @import\nsrc/style.scss 1:9 @use\n- 1:1 root stylesheet\n"
135
+ "stack": "node_modules/bootstrap/scss/_functions.scss 185:10 luminance()\nnode_modules/bootstrap/scss/_functions.scss 174:8 contrast-ratio()\nnode_modules/bootstrap/scss/_functions.scss 159:22 color-contrast()\nnode_modules/bootstrap/scss/_variables.scss 846:42 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
136
136
  },
137
137
  "id": "",
138
138
  "location": {
@@ -164,7 +164,7 @@
164
164
  {
165
165
  "detail": {
166
166
  "deprecation": true,
167
- "stack": "node_modules/bootstrap/scss/_functions.scss 186:10 luminance()\nnode_modules/bootstrap/scss/_functions.scss 174:8 contrast-ratio()\nnode_modules/bootstrap/scss/_functions.scss 159:22 color-contrast()\nnode_modules/bootstrap/scss/_variables.scss 846:42 @import\nnode_modules/bootstrap/scss/bootstrap.scss 8:9 @import\nsrc/style.scss 1:9 @use\n- 1:1 root stylesheet\n"
167
+ "stack": "node_modules/bootstrap/scss/_functions.scss 186:10 luminance()\nnode_modules/bootstrap/scss/_functions.scss 174:8 contrast-ratio()\nnode_modules/bootstrap/scss/_functions.scss 159:22 color-contrast()\nnode_modules/bootstrap/scss/_variables.scss 846:42 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
168
168
  },
169
169
  "id": "",
170
170
  "location": {
@@ -196,7 +196,7 @@
196
196
  {
197
197
  "detail": {
198
198
  "deprecation": true,
199
- "stack": "node_modules/bootstrap/scss/_functions.scss 187:10 luminance()\nnode_modules/bootstrap/scss/_functions.scss 174:8 contrast-ratio()\nnode_modules/bootstrap/scss/_functions.scss 159:22 color-contrast()\nnode_modules/bootstrap/scss/_variables.scss 846:42 @import\nnode_modules/bootstrap/scss/bootstrap.scss 8:9 @import\nsrc/style.scss 1:9 @use\n- 1:1 root stylesheet\n"
199
+ "stack": "node_modules/bootstrap/scss/_functions.scss 187:10 luminance()\nnode_modules/bootstrap/scss/_functions.scss 174:8 contrast-ratio()\nnode_modules/bootstrap/scss/_functions.scss 159:22 color-contrast()\nnode_modules/bootstrap/scss/_variables.scss 846:42 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
200
200
  },
201
201
  "id": "",
202
202
  "location": {
@@ -228,7 +228,7 @@
228
228
  {
229
229
  "detail": {
230
230
  "deprecation": true,
231
- "stack": "node_modules/bootstrap/scss/_functions.scss 207:11 tint-color()\nnode_modules/bootstrap/scss/_variables.scss 79:12 @import\nnode_modules/bootstrap/scss/bootstrap.scss 8:9 @import\nsrc/style.scss 1:9 @use\n- 1:1 root stylesheet\n"
231
+ "stack": "node_modules/bootstrap/scss/_functions.scss 207:11 tint-color()\nnode_modules/bootstrap/scss/_variables.scss 79:12 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
232
232
  },
233
233
  "id": "",
234
234
  "location": {
@@ -260,7 +260,7 @@
260
260
  {
261
261
  "detail": {
262
262
  "deprecation": true,
263
- "stack": "node_modules/bootstrap/scss/_functions.scss 212:11 shade-color()\nnode_modules/bootstrap/scss/_variables.scss 84:12 @import\nnode_modules/bootstrap/scss/bootstrap.scss 8:9 @import\nsrc/style.scss 1:9 @use\n- 1:1 root stylesheet\n"
263
+ "stack": "node_modules/bootstrap/scss/_functions.scss 212:11 shade-color()\nnode_modules/bootstrap/scss/_variables.scss 84:12 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
264
264
  },
265
265
  "id": "",
266
266
  "location": {
@@ -292,7 +292,7 @@
292
292
  {
293
293
  "detail": {
294
294
  "deprecation": true,
295
- "stack": "node_modules/bootstrap/scss/_variables.scss 342:27 @import\nnode_modules/bootstrap/scss/bootstrap.scss 8:9 @import\nsrc/style.scss 1:9 @use\n- 1:1 root stylesheet\n"
295
+ "stack": "node_modules/bootstrap/scss/_variables.scss 342:27 @import\nbootstrap/scss/bootstrap.scss 8:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
296
296
  },
297
297
  "id": "",
298
298
  "location": {
@@ -324,7 +324,7 @@
324
324
  {
325
325
  "detail": {
326
326
  "deprecation": true,
327
- "stack": "node_modules/bootstrap/scss/bootstrap.scss 1:9 @import\nsrc/style.scss 1:9 @use\n- 1:1 root stylesheet\n"
327
+ "stack": "bootstrap/scss/bootstrap.scss 1:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
328
328
  },
329
329
  "id": "",
330
330
  "location": {
@@ -356,7 +356,7 @@
356
356
  {
357
357
  "detail": {
358
358
  "deprecation": true,
359
- "stack": "node_modules/bootstrap/scss/bootstrap.scss 7:9 @import\nsrc/style.scss 1:9 @use\n- 1:1 root stylesheet\n"
359
+ "stack": "bootstrap/scss/bootstrap.scss 7:9 @import\ntesteranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
360
360
  },
361
361
  "id": "",
362
362
  "location": {
@@ -388,15 +388,15 @@
388
388
  {
389
389
  "detail": {
390
390
  "deprecation": true,
391
- "stack": "node_modules/bootstrap/scss/bootstrap.scss 8:9 @import\nsrc/style.scss 1:9 @use\n- 1:1 root stylesheet\n"
391
+ "stack": "testeranto-stilo/src/style.scss 1:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
392
392
  },
393
393
  "id": "",
394
394
  "location": {
395
395
  "column": 8,
396
- "file": "node_modules/bootstrap/scss/bootstrap.scss",
396
+ "file": "node_modules/testeranto-stilo/src/style.scss",
397
397
  "length": 0,
398
- "line": 7,
399
- "lineText": "\"variables\"",
398
+ "line": 0,
399
+ "lineText": "\"bootstrap/scss/bootstrap.scss\"",
400
400
  "namespace": "file",
401
401
  "suggestion": ""
402
402
  },
@@ -417,33 +417,18 @@
417
417
  "pluginName": "sass-plugin",
418
418
  "text": "Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.\n\nMore info and automated migrator: https://sass-lang.com/d/import"
419
419
  },
420
- {
421
- "id": "",
422
- "location": {
423
- "column": 7,
424
- "file": "src/components/pure/TestPageView.test/index.tsx",
425
- "length": 21,
426
- "line": 8,
427
- "lineText": "import \"./../../../App.scss\";",
428
- "namespace": "",
429
- "suggestion": ""
430
- },
431
- "notes": [],
432
- "pluginName": "sass-plugin",
433
- "text": "sass warning: 234 repetitive deprecation warnings omitted.\nRun in verbose mode to see all warnings."
434
- },
435
420
  {
436
421
  "detail": {
437
422
  "deprecation": true,
438
- "stack": "src/style.scss 1:9 @use\n- 1:1 root stylesheet\n"
423
+ "stack": "testeranto-stilo/src/style.scss 2:9 @import\nsrc/style.scss 2:9 @use\n- 1:1 root stylesheet\n"
439
424
  },
440
425
  "id": "",
441
426
  "location": {
442
427
  "column": 8,
443
- "file": "src/style.scss",
428
+ "file": "node_modules/testeranto-stilo/src/style.scss",
444
429
  "length": 0,
445
- "line": 0,
446
- "lineText": "\"../node_modules/bootstrap/scss/bootstrap.scss\"",
430
+ "line": 1,
431
+ "lineText": "\"./fonts.scss\"",
447
432
  "namespace": "file",
448
433
  "suggestion": ""
449
434
  },
@@ -464,6 +449,51 @@
464
449
  "pluginName": "sass-plugin",
465
450
  "text": "Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.\n\nMore info and automated migrator: https://sass-lang.com/d/import"
466
451
  },
452
+ {
453
+ "id": "different-path-case",
454
+ "location": {
455
+ "column": 7,
456
+ "file": "src/components/pure/ProjectPageView.tsx",
457
+ "length": 18,
458
+ "line": 9,
459
+ "lineText": "import \"./../../App.scss\";",
460
+ "namespace": "",
461
+ "suggestion": ""
462
+ },
463
+ "notes": [],
464
+ "pluginName": "",
465
+ "text": "Use \"src/app.scss\" instead of \"src/App.scss\" to avoid issues with case-sensitive file systems"
466
+ },
467
+ {
468
+ "id": "different-path-case",
469
+ "location": {
470
+ "column": 7,
471
+ "file": "src/components/pure/TestPageView.test/index.tsx",
472
+ "length": 21,
473
+ "line": 8,
474
+ "lineText": "import \"./../../../App.scss\";",
475
+ "namespace": "",
476
+ "suggestion": ""
477
+ },
478
+ "notes": [],
479
+ "pluginName": "",
480
+ "text": "Use \"src/app.scss\" instead of \"src/App.scss\" to avoid issues with case-sensitive file systems"
481
+ },
482
+ {
483
+ "id": "",
484
+ "location": {
485
+ "column": 7,
486
+ "file": "src/components/pure/TestPageView.test/index.tsx",
487
+ "length": 21,
488
+ "line": 8,
489
+ "lineText": "import \"./../../../App.scss\";",
490
+ "namespace": "",
491
+ "suggestion": ""
492
+ },
493
+ "notes": [],
494
+ "pluginName": "sass-plugin",
495
+ "text": "sass warning: 235 repetitive deprecation warnings omitted.\nRun in verbose mode to see all warnings."
496
+ },
467
497
  {
468
498
  "detail": {
469
499
  "deprecation": true,
@@ -475,7 +505,7 @@
475
505
  "file": "src/style.scss",
476
506
  "length": 0,
477
507
  "line": 1,
478
- "lineText": "\"./fonts.scss\"",
508
+ "lineText": "\"testeranto-stilo/src/style.scss\"",
479
509
  "namespace": "file",
480
510
  "suggestion": ""
481
511
  },
@@ -595,7 +625,7 @@
595
625
  "format": "esm"
596
626
  },
597
627
  "src/PM/index.ts": {
598
- "bytes": 1837,
628
+ "bytes": 1856,
599
629
  "imports": [
600
630
  {
601
631
  "path": "puppeteer-core",
@@ -631,7 +661,7 @@
631
661
  "format": "esm"
632
662
  },
633
663
  "src/PM/web.ts": {
634
- "bytes": 4283,
664
+ "bytes": 4364,
635
665
  "imports": [
636
666
  {
637
667
  "path": "stream",
@@ -677,7 +707,7 @@
677
707
  "format": "esm"
678
708
  },
679
709
  "src/lib/index.ts": {
680
- "bytes": 3609,
710
+ "bytes": 3757,
681
711
  "imports": [
682
712
  {
683
713
  "path": "../CoreTypes",
@@ -705,7 +735,7 @@
705
735
  "external": true
706
736
  },
707
737
  {
708
- "path": "./abstractBase",
738
+ "path": "./BaseGiven",
709
739
  "kind": "import-statement",
710
740
  "external": true
711
741
  },
@@ -738,7 +768,7 @@
738
768
  "format": "esm"
739
769
  },
740
770
  "src/lib/pmProxy.ts": {
741
- "bytes": 7276,
771
+ "bytes": 8407,
742
772
  "imports": [
743
773
  {
744
774
  "path": "./types",
@@ -763,8 +793,8 @@
763
793
  ],
764
794
  "format": "esm"
765
795
  },
766
- "src/lib/abstractBase.ts": {
767
- "bytes": 7855,
796
+ "src/lib/BaseGiven.ts": {
797
+ "bytes": 5117,
768
798
  "imports": [
769
799
  {
770
800
  "path": ".",
@@ -781,6 +811,11 @@
781
811
  "kind": "import-statement",
782
812
  "original": "./pmProxy.js"
783
813
  },
814
+ {
815
+ "path": "./BaseSuite",
816
+ "kind": "import-statement",
817
+ "external": true
818
+ },
784
819
  {
785
820
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
786
821
  "kind": "import-statement",
@@ -799,14 +834,9 @@
799
834
  ],
800
835
  "format": "esm"
801
836
  },
802
- "src/lib/basebuilder.ts": {
803
- "bytes": 5120,
837
+ "src/lib/BaseWhen.ts": {
838
+ "bytes": 2535,
804
839
  "imports": [
805
- {
806
- "path": "stream",
807
- "kind": "import-statement",
808
- "external": true
809
- },
810
840
  {
811
841
  "path": ".",
812
842
  "kind": "import-statement",
@@ -818,14 +848,9 @@
818
848
  "external": true
819
849
  },
820
850
  {
821
- "path": "./abstractBase.js",
822
- "kind": "import-statement",
823
- "external": true
824
- },
825
- {
826
- "path": "./BaseSuite",
851
+ "path": "src/lib/pmProxy.ts",
827
852
  "kind": "import-statement",
828
- "external": true
853
+ "original": "./pmProxy.js"
829
854
  },
830
855
  {
831
856
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
@@ -845,28 +870,23 @@
845
870
  ],
846
871
  "format": "esm"
847
872
  },
848
- "src/lib/classBuilder.ts": {
849
- "bytes": 3102,
873
+ "src/lib/BaseThen.ts": {
874
+ "bytes": 3339,
850
875
  "imports": [
851
876
  {
852
- "path": "type-fest",
877
+ "path": ".",
853
878
  "kind": "import-statement",
854
879
  "external": true
855
880
  },
856
- {
857
- "path": "src/lib/basebuilder.ts",
858
- "kind": "import-statement",
859
- "original": "./basebuilder.js"
860
- },
861
881
  {
862
882
  "path": "./types.js",
863
883
  "kind": "import-statement",
864
884
  "external": true
865
885
  },
866
886
  {
867
- "path": "./index.js",
887
+ "path": "src/lib/pmProxy.ts",
868
888
  "kind": "import-statement",
869
- "external": true
889
+ "original": "./pmProxy.js"
870
890
  },
871
891
  {
872
892
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
@@ -887,7 +907,7 @@
887
907
  "format": "esm"
888
908
  },
889
909
  "src/lib/BaseSuite.ts": {
890
- "bytes": 3818,
910
+ "bytes": 4530,
891
911
  "imports": [
892
912
  {
893
913
  "path": ".",
@@ -900,7 +920,7 @@
900
920
  "external": true
901
921
  },
902
922
  {
903
- "path": "./abstractBase",
923
+ "path": "./BaseGiven",
904
924
  "kind": "import-statement",
905
925
  "external": true
906
926
  },
@@ -932,33 +952,48 @@
932
952
  ],
933
953
  "format": "esm"
934
954
  },
935
- "src/lib/core.ts": {
936
- "bytes": 3601,
955
+ "src/lib/Tiposkripto.ts": {
956
+ "bytes": 8977,
937
957
  "imports": [
958
+ {
959
+ "path": "stream",
960
+ "kind": "import-statement",
961
+ "external": true
962
+ },
963
+ {
964
+ "path": "type-fest",
965
+ "kind": "import-statement",
966
+ "external": true
967
+ },
938
968
  {
939
969
  "path": "src/lib/index.ts",
940
970
  "kind": "import-statement",
941
971
  "original": "./index.js"
942
972
  },
943
973
  {
944
- "path": "src/lib/abstractBase.ts",
974
+ "path": "src/lib/BaseGiven.ts",
945
975
  "kind": "import-statement",
946
- "original": "./abstractBase.js"
976
+ "original": "./BaseGiven"
947
977
  },
948
978
  {
949
- "path": "src/lib/classBuilder.ts",
979
+ "path": "src/lib/BaseWhen.ts",
950
980
  "kind": "import-statement",
951
- "original": "./classBuilder.js"
981
+ "original": "./BaseWhen.js"
952
982
  },
953
983
  {
954
- "path": "./types",
984
+ "path": "src/lib/BaseThen.ts",
985
+ "kind": "import-statement",
986
+ "original": "./BaseThen.js"
987
+ },
988
+ {
989
+ "path": "./types.js",
955
990
  "kind": "import-statement",
956
991
  "external": true
957
992
  },
958
993
  {
959
994
  "path": "src/lib/BaseSuite.ts",
960
995
  "kind": "import-statement",
961
- "original": "./BaseSuite.js"
996
+ "original": "./BaseSuite"
962
997
  },
963
998
  {
964
999
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
@@ -979,7 +1014,7 @@
979
1014
  "format": "esm"
980
1015
  },
981
1016
  "src/Web.ts": {
982
- "bytes": 2958,
1017
+ "bytes": 2964,
983
1018
  "imports": [
984
1019
  {
985
1020
  "path": "./CoreTypes",
@@ -992,9 +1027,9 @@
992
1027
  "original": "./PM/web"
993
1028
  },
994
1029
  {
995
- "path": "src/lib/core.ts",
1030
+ "path": "src/lib/Tiposkripto.ts",
996
1031
  "kind": "import-statement",
997
- "original": "./lib/core.js"
1032
+ "original": "./lib/Tiposkripto"
998
1033
  },
999
1034
  {
1000
1035
  "path": "src/lib/index.ts",
@@ -1019,9 +1054,39 @@
1019
1054
  ],
1020
1055
  "format": "esm"
1021
1056
  },
1022
- "node_modules/react/cjs/react.development.js": {
1023
- "bytes": 87574,
1057
+ "src/lib/BaseSuite.test/mock.ts": {
1058
+ "bytes": 2409,
1024
1059
  "imports": [
1060
+ {
1061
+ "path": "src/lib/BaseGiven.ts",
1062
+ "kind": "import-statement",
1063
+ "original": "../BaseGiven"
1064
+ },
1065
+ {
1066
+ "path": "src/lib/BaseSuite.ts",
1067
+ "kind": "import-statement",
1068
+ "original": "../BaseSuite"
1069
+ },
1070
+ {
1071
+ "path": "src/lib/BaseThen.ts",
1072
+ "kind": "import-statement",
1073
+ "original": "../BaseThen"
1074
+ },
1075
+ {
1076
+ "path": "src/lib/BaseWhen.ts",
1077
+ "kind": "import-statement",
1078
+ "original": "../BaseWhen"
1079
+ },
1080
+ {
1081
+ "path": "../types",
1082
+ "kind": "import-statement",
1083
+ "external": true
1084
+ },
1085
+ {
1086
+ "path": "./test",
1087
+ "kind": "import-statement",
1088
+ "external": true
1089
+ },
1025
1090
  {
1026
1091
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
1027
1092
  "kind": "import-statement",
@@ -1038,11 +1103,36 @@
1038
1103
  "external": true
1039
1104
  }
1040
1105
  ],
1041
- "format": "cjs"
1106
+ "format": "esm"
1042
1107
  },
1043
- "node_modules/react/index.js": {
1044
- "bytes": 190,
1108
+ "src/lib/BaseSuite.test/test.ts": {
1109
+ "bytes": 12087,
1045
1110
  "imports": [
1111
+ {
1112
+ "path": "..",
1113
+ "kind": "import-statement",
1114
+ "external": true
1115
+ },
1116
+ {
1117
+ "path": "../../CoreTypes",
1118
+ "kind": "import-statement",
1119
+ "external": true
1120
+ },
1121
+ {
1122
+ "path": "../BaseSuite",
1123
+ "kind": "import-statement",
1124
+ "external": true
1125
+ },
1126
+ {
1127
+ "path": "../types",
1128
+ "kind": "import-statement",
1129
+ "external": true
1130
+ },
1131
+ {
1132
+ "path": "src/lib/BaseSuite.test/mock.ts",
1133
+ "kind": "import-statement",
1134
+ "original": "./mock"
1135
+ },
1046
1136
  {
1047
1137
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
1048
1138
  "kind": "import-statement",
@@ -1057,28 +1147,64 @@
1057
1147
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
1058
1148
  "kind": "import-statement",
1059
1149
  "external": true
1150
+ }
1151
+ ],
1152
+ "format": "esm"
1153
+ },
1154
+ "src/lib/BaseSuite.test/web.test.ts": {
1155
+ "bytes": 319,
1156
+ "imports": [
1157
+ {
1158
+ "path": "src/Web.ts",
1159
+ "kind": "import-statement",
1160
+ "original": "../../Web"
1161
+ },
1162
+ {
1163
+ "path": "src/lib/BaseSuite.ts",
1164
+ "kind": "import-statement",
1165
+ "original": "../BaseSuite"
1166
+ },
1167
+ {
1168
+ "path": "src/lib/BaseSuite.test/test.ts",
1169
+ "kind": "import-statement",
1170
+ "original": "./test"
1171
+ },
1172
+ {
1173
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
1174
+ "kind": "import-statement",
1175
+ "external": true
1060
1176
  },
1061
1177
  {
1062
- "path": "node_modules/react/cjs/react.development.js",
1063
- "kind": "require-call",
1064
- "original": "./cjs/react.development.js"
1178
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
1179
+ "kind": "import-statement",
1180
+ "external": true
1181
+ },
1182
+ {
1183
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
1184
+ "kind": "import-statement",
1185
+ "external": true
1065
1186
  }
1066
1187
  ],
1067
- "format": "cjs"
1188
+ "format": "esm"
1068
1189
  },
1069
- "../testeranto-react/src/react-dom/jsx/dynamic.ts": {
1070
- "bytes": 959,
1190
+ "node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts": {
1191
+ "bytes": 1418,
1071
1192
  "imports": [
1072
1193
  {
1073
- "path": "node_modules/react/index.js",
1194
+ "path": "react",
1074
1195
  "kind": "import-statement",
1075
- "original": "react"
1196
+ "external": true
1076
1197
  },
1077
1198
  {
1078
1199
  "path": "testeranto/src/CoreTypes",
1079
1200
  "kind": "import-statement",
1080
1201
  "external": true
1081
1202
  },
1203
+ {
1204
+ "path": "testeranto/src/lib",
1205
+ "kind": "import-statement",
1206
+ "external": true
1207
+ },
1082
1208
  {
1083
1209
  "path": ".",
1084
1210
  "kind": "import-statement",
@@ -1102,7 +1228,7 @@
1102
1228
  ],
1103
1229
  "format": "esm"
1104
1230
  },
1105
- "../testeranto-react/src/react-dom/jsx/web.ts": {
1231
+ "node_modules/testeranto-react/src/react-dom/jsx/web.ts": {
1106
1232
  "bytes": 708,
1107
1233
  "imports": [
1108
1234
  {
@@ -1116,7 +1242,7 @@
1116
1242
  "external": true
1117
1243
  },
1118
1244
  {
1119
- "path": "../testeranto-react/src/react-dom/jsx/dynamic.ts",
1245
+ "path": "node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts",
1120
1246
  "kind": "import-statement",
1121
1247
  "original": "./dynamic.js"
1122
1248
  },
@@ -1138,8 +1264,55 @@
1138
1264
  ],
1139
1265
  "format": "esm"
1140
1266
  },
1141
- "node_modules/react-router/dist/development/chunk-ZYFC6VSF.mjs": {
1142
- "bytes": 330085,
1267
+ "node_modules/react/cjs/react.development.js": {
1268
+ "bytes": 87574,
1269
+ "imports": [
1270
+ {
1271
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
1272
+ "kind": "import-statement",
1273
+ "external": true
1274
+ },
1275
+ {
1276
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
1277
+ "kind": "import-statement",
1278
+ "external": true
1279
+ },
1280
+ {
1281
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
1282
+ "kind": "import-statement",
1283
+ "external": true
1284
+ }
1285
+ ],
1286
+ "format": "cjs"
1287
+ },
1288
+ "node_modules/react/index.js": {
1289
+ "bytes": 190,
1290
+ "imports": [
1291
+ {
1292
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
1293
+ "kind": "import-statement",
1294
+ "external": true
1295
+ },
1296
+ {
1297
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
1298
+ "kind": "import-statement",
1299
+ "external": true
1300
+ },
1301
+ {
1302
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
1303
+ "kind": "import-statement",
1304
+ "external": true
1305
+ },
1306
+ {
1307
+ "path": "node_modules/react/cjs/react.development.js",
1308
+ "kind": "require-call",
1309
+ "original": "./cjs/react.development.js"
1310
+ }
1311
+ ],
1312
+ "format": "cjs"
1313
+ },
1314
+ "node_modules/react-router/dist/development/chunk-PVWAREVJ.mjs": {
1315
+ "bytes": 330766,
1143
1316
  "imports": [
1144
1317
  {
1145
1318
  "path": "node_modules/react/index.js",
@@ -1360,13 +1533,13 @@
1360
1533
  ],
1361
1534
  "format": "cjs"
1362
1535
  },
1363
- "node_modules/react-router/dist/development/chunk-HZX6U7MI.mjs": {
1364
- "bytes": 86838,
1536
+ "node_modules/react-router/dist/development/chunk-5UALIXAM.mjs": {
1537
+ "bytes": 89716,
1365
1538
  "imports": [
1366
1539
  {
1367
- "path": "node_modules/react-router/dist/development/chunk-ZYFC6VSF.mjs",
1540
+ "path": "node_modules/react-router/dist/development/chunk-PVWAREVJ.mjs",
1368
1541
  "kind": "import-statement",
1369
- "original": "./chunk-ZYFC6VSF.mjs"
1542
+ "original": "./chunk-PVWAREVJ.mjs"
1370
1543
  },
1371
1544
  {
1372
1545
  "path": "node_modules/react/index.js",
@@ -1427,17 +1600,17 @@
1427
1600
  "format": "esm"
1428
1601
  },
1429
1602
  "node_modules/react-router/dist/development/dom-export.mjs": {
1430
- "bytes": 7322,
1603
+ "bytes": 7416,
1431
1604
  "imports": [
1432
1605
  {
1433
- "path": "node_modules/react-router/dist/development/chunk-HZX6U7MI.mjs",
1606
+ "path": "node_modules/react-router/dist/development/chunk-5UALIXAM.mjs",
1434
1607
  "kind": "import-statement",
1435
- "original": "./chunk-HZX6U7MI.mjs"
1608
+ "original": "./chunk-5UALIXAM.mjs"
1436
1609
  },
1437
1610
  {
1438
- "path": "node_modules/react-router/dist/development/chunk-ZYFC6VSF.mjs",
1611
+ "path": "node_modules/react-router/dist/development/chunk-PVWAREVJ.mjs",
1439
1612
  "kind": "import-statement",
1440
- "original": "./chunk-ZYFC6VSF.mjs"
1613
+ "original": "./chunk-PVWAREVJ.mjs"
1441
1614
  },
1442
1615
  {
1443
1616
  "path": "node_modules/react/index.js",
@@ -1476,14 +1649,14 @@
1476
1649
  "bytes": 6515,
1477
1650
  "imports": [
1478
1651
  {
1479
- "path": "node_modules/react-router/dist/development/chunk-HZX6U7MI.mjs",
1652
+ "path": "node_modules/react-router/dist/development/chunk-5UALIXAM.mjs",
1480
1653
  "kind": "import-statement",
1481
- "original": "./chunk-HZX6U7MI.mjs"
1654
+ "original": "./chunk-5UALIXAM.mjs"
1482
1655
  },
1483
1656
  {
1484
- "path": "node_modules/react-router/dist/development/chunk-ZYFC6VSF.mjs",
1657
+ "path": "node_modules/react-router/dist/development/chunk-PVWAREVJ.mjs",
1485
1658
  "kind": "import-statement",
1486
- "original": "./chunk-ZYFC6VSF.mjs"
1659
+ "original": "./chunk-PVWAREVJ.mjs"
1487
1660
  },
1488
1661
  {
1489
1662
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
@@ -1534,8 +1707,8 @@
1534
1707
  ],
1535
1708
  "format": "esm"
1536
1709
  },
1537
- "node_modules/chai/chai.js": {
1538
- "bytes": 143246,
1710
+ "node_modules/chai/index.js": {
1711
+ "bytes": 142562,
1539
1712
  "imports": [
1540
1713
  {
1541
1714
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
@@ -1582,10 +1755,10 @@
1582
1755
  "format": "cjs"
1583
1756
  },
1584
1757
  "src/components/pure/TestPageView.test/implementation.ts": {
1585
- "bytes": 5942,
1758
+ "bytes": 5904,
1586
1759
  "imports": [
1587
1760
  {
1588
- "path": "node_modules/chai/chai.js",
1761
+ "path": "node_modules/chai/index.js",
1589
1762
  "kind": "import-statement",
1590
1763
  "original": "chai"
1591
1764
  },
@@ -1609,6 +1782,11 @@
1609
1782
  "kind": "import-statement",
1610
1783
  "external": true
1611
1784
  },
1785
+ {
1786
+ "path": "../../../lib",
1787
+ "kind": "import-statement",
1788
+ "external": true
1789
+ },
1612
1790
  {
1613
1791
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
1614
1792
  "kind": "import-statement",
@@ -1628,7 +1806,7 @@
1628
1806
  "format": "esm"
1629
1807
  },
1630
1808
  "src/components/pure/TestPageView.test/specification.ts": {
1631
- "bytes": 1658,
1809
+ "bytes": 1602,
1632
1810
  "imports": [
1633
1811
  {
1634
1812
  "path": "../../../CoreTypes",
@@ -14865,24 +15043,30 @@
14865
15043
  ],
14866
15044
  "format": "esm"
14867
15045
  },
14868
- "src/components/pure/NavBar.tsx": {
14869
- "bytes": 3051,
15046
+ "src/utils/logFiles.ts": {
15047
+ "bytes": 1513,
14870
15048
  "imports": [
14871
15049
  {
14872
- "path": "node_modules/react/index.js",
15050
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
14873
15051
  "kind": "import-statement",
14874
- "original": "react"
15052
+ "external": true
14875
15053
  },
14876
15054
  {
14877
- "path": "node_modules/react-bootstrap/esm/index.js",
15055
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
14878
15056
  "kind": "import-statement",
14879
- "original": "react-bootstrap"
15057
+ "external": true
14880
15058
  },
14881
15059
  {
14882
- "path": "node_modules/react-router-dom/dist/index.mjs",
15060
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
14883
15061
  "kind": "import-statement",
14884
- "original": "react-router-dom"
14885
- },
15062
+ "external": true
15063
+ }
15064
+ ],
15065
+ "format": "esm"
15066
+ },
15067
+ "node_modules/@monaco-editor/loader/lib/es/_virtual/_rollupPluginBabelHelpers.js": {
15068
+ "bytes": 4188,
15069
+ "imports": [
14886
15070
  {
14887
15071
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
14888
15072
  "kind": "import-statement",
@@ -14901,19 +15085,9 @@
14901
15085
  ],
14902
15086
  "format": "esm"
14903
15087
  },
14904
- "src/components/TestStatusBadge.tsx": {
14905
- "bytes": 1613,
15088
+ "node_modules/state-local/lib/es/state-local.js": {
15089
+ "bytes": 5549,
14906
15090
  "imports": [
14907
- {
14908
- "path": "node_modules/react/index.js",
14909
- "kind": "import-statement",
14910
- "original": "react"
14911
- },
14912
- {
14913
- "path": "node_modules/react-bootstrap/esm/index.js",
14914
- "kind": "import-statement",
14915
- "original": "react-bootstrap"
14916
- },
14917
15091
  {
14918
15092
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
14919
15093
  "kind": "import-statement",
@@ -14932,29 +15106,9 @@
14932
15106
  ],
14933
15107
  "format": "esm"
14934
15108
  },
14935
- "src/components/pure/TestPageView.tsx": {
14936
- "bytes": 13272,
15109
+ "node_modules/@monaco-editor/loader/lib/es/config/index.js": {
15110
+ "bytes": 124,
14937
15111
  "imports": [
14938
- {
14939
- "path": "node_modules/react/index.js",
14940
- "kind": "import-statement",
14941
- "original": "react"
14942
- },
14943
- {
14944
- "path": "node_modules/react-bootstrap/esm/index.js",
14945
- "kind": "import-statement",
14946
- "original": "react-bootstrap"
14947
- },
14948
- {
14949
- "path": "src/components/pure/NavBar.tsx",
14950
- "kind": "import-statement",
14951
- "original": "./NavBar"
14952
- },
14953
- {
14954
- "path": "src/components/TestStatusBadge.tsx",
14955
- "kind": "import-statement",
14956
- "original": "../TestStatusBadge"
14957
- },
14958
15112
  {
14959
15113
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
14960
15114
  "kind": "import-statement",
@@ -14973,239 +15127,223 @@
14973
15127
  ],
14974
15128
  "format": "esm"
14975
15129
  },
14976
- "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Thin.ttf": {
14977
- "bytes": 2819076,
14978
- "imports": []
14979
- },
14980
- "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Light.ttf": {
14981
- "bytes": 3193048,
14982
- "imports": []
14983
- },
14984
- "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Regular.ttf": {
14985
- "bytes": 3284152,
14986
- "imports": []
14987
- },
14988
- "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Medium.ttf": {
14989
- "bytes": 3325496,
14990
- "imports": []
14991
- },
14992
- "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Bold.ttf": {
14993
- "bytes": 3432832,
14994
- "imports": []
14995
- },
14996
- "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-ExtraBold.ttf": {
14997
- "bytes": 3515332,
14998
- "imports": []
14999
- },
15000
- "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Black.ttf": {
15001
- "bytes": 3521968,
15002
- "imports": []
15003
- },
15004
- "src/App.scss": {
15005
- "bytes": 293290,
15130
+ "node_modules/@monaco-editor/loader/lib/es/utils/curry.js": {
15131
+ "bytes": 546,
15006
15132
  "imports": [
15007
15133
  {
15008
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
15009
- "kind": "url-token",
15134
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15135
+ "kind": "import-statement",
15010
15136
  "external": true
15011
15137
  },
15012
15138
  {
15013
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
15014
- "kind": "url-token",
15139
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15140
+ "kind": "import-statement",
15015
15141
  "external": true
15016
15142
  },
15017
15143
  {
15018
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e",
15019
- "kind": "url-token",
15144
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15145
+ "kind": "import-statement",
15020
15146
  "external": true
15021
- },
15147
+ }
15148
+ ],
15149
+ "format": "esm"
15150
+ },
15151
+ "node_modules/@monaco-editor/loader/lib/es/utils/isObject.js": {
15152
+ "bytes": 108,
15153
+ "imports": [
15022
15154
  {
15023
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e",
15024
- "kind": "url-token",
15155
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15156
+ "kind": "import-statement",
15025
15157
  "external": true
15026
15158
  },
15027
15159
  {
15028
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e",
15029
- "kind": "url-token",
15160
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15161
+ "kind": "import-statement",
15030
15162
  "external": true
15031
15163
  },
15032
15164
  {
15033
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e",
15034
- "kind": "url-token",
15165
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15166
+ "kind": "import-statement",
15035
15167
  "external": true
15036
- },
15168
+ }
15169
+ ],
15170
+ "format": "esm"
15171
+ },
15172
+ "node_modules/@monaco-editor/loader/lib/es/validators/index.js": {
15173
+ "bytes": 1514,
15174
+ "imports": [
15037
15175
  {
15038
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e",
15039
- "kind": "url-token",
15040
- "external": true
15176
+ "path": "node_modules/@monaco-editor/loader/lib/es/utils/curry.js",
15177
+ "kind": "import-statement",
15178
+ "original": "../utils/curry.js"
15041
15179
  },
15042
15180
  {
15043
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e",
15044
- "kind": "url-token",
15045
- "external": true
15181
+ "path": "node_modules/@monaco-editor/loader/lib/es/utils/isObject.js",
15182
+ "kind": "import-statement",
15183
+ "original": "../utils/isObject.js"
15046
15184
  },
15047
15185
  {
15048
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e",
15049
- "kind": "url-token",
15186
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15187
+ "kind": "import-statement",
15050
15188
  "external": true
15051
15189
  },
15052
15190
  {
15053
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e",
15054
- "kind": "url-token",
15191
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15192
+ "kind": "import-statement",
15055
15193
  "external": true
15056
15194
  },
15057
15195
  {
15058
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e",
15059
- "kind": "url-token",
15196
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15197
+ "kind": "import-statement",
15060
15198
  "external": true
15061
- },
15199
+ }
15200
+ ],
15201
+ "format": "esm"
15202
+ },
15203
+ "node_modules/@monaco-editor/loader/lib/es/utils/compose.js": {
15204
+ "bytes": 297,
15205
+ "imports": [
15062
15206
  {
15063
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e",
15064
- "kind": "url-token",
15207
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15208
+ "kind": "import-statement",
15065
15209
  "external": true
15066
15210
  },
15067
15211
  {
15068
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e",
15069
- "kind": "url-token",
15212
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15213
+ "kind": "import-statement",
15070
15214
  "external": true
15071
15215
  },
15072
15216
  {
15073
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e",
15074
- "kind": "url-token",
15217
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15218
+ "kind": "import-statement",
15075
15219
  "external": true
15076
- },
15220
+ }
15221
+ ],
15222
+ "format": "esm"
15223
+ },
15224
+ "node_modules/@monaco-editor/loader/lib/es/utils/deepMerge.js": {
15225
+ "bytes": 414,
15226
+ "imports": [
15077
15227
  {
15078
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e",
15079
- "kind": "url-token",
15080
- "external": true
15228
+ "path": "node_modules/@monaco-editor/loader/lib/es/_virtual/_rollupPluginBabelHelpers.js",
15229
+ "kind": "import-statement",
15230
+ "original": "../_virtual/_rollupPluginBabelHelpers.js"
15081
15231
  },
15082
15232
  {
15083
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e",
15084
- "kind": "url-token",
15233
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15234
+ "kind": "import-statement",
15085
15235
  "external": true
15086
15236
  },
15087
15237
  {
15088
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
15089
- "kind": "url-token",
15238
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15239
+ "kind": "import-statement",
15090
15240
  "external": true
15091
15241
  },
15092
15242
  {
15093
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgb%285.2, 44, 101.2%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
15094
- "kind": "url-token",
15243
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15244
+ "kind": "import-statement",
15095
15245
  "external": true
15096
- },
15246
+ }
15247
+ ],
15248
+ "format": "esm"
15249
+ },
15250
+ "node_modules/@monaco-editor/loader/lib/es/utils/makeCancelable.js": {
15251
+ "bytes": 643,
15252
+ "imports": [
15097
15253
  {
15098
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e",
15099
- "kind": "url-token",
15254
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15255
+ "kind": "import-statement",
15100
15256
  "external": true
15101
15257
  },
15102
15258
  {
15103
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e",
15104
- "kind": "url-token",
15259
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15260
+ "kind": "import-statement",
15105
15261
  "external": true
15106
15262
  },
15107
15263
  {
15108
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e",
15109
- "kind": "url-token",
15264
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15265
+ "kind": "import-statement",
15110
15266
  "external": true
15111
- },
15267
+ }
15268
+ ],
15269
+ "format": "esm"
15270
+ },
15271
+ "node_modules/@monaco-editor/loader/lib/es/loader/index.js": {
15272
+ "bytes": 4360,
15273
+ "imports": [
15112
15274
  {
15113
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e",
15114
- "kind": "url-token",
15115
- "external": true
15275
+ "path": "node_modules/@monaco-editor/loader/lib/es/_virtual/_rollupPluginBabelHelpers.js",
15276
+ "kind": "import-statement",
15277
+ "original": "../_virtual/_rollupPluginBabelHelpers.js"
15116
15278
  },
15117
15279
  {
15118
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e",
15119
- "kind": "url-token",
15120
- "external": true
15280
+ "path": "node_modules/state-local/lib/es/state-local.js",
15281
+ "kind": "import-statement",
15282
+ "original": "state-local"
15121
15283
  },
15122
15284
  {
15123
- "path": "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Thin.ttf",
15124
- "kind": "url-token",
15125
- "original": "../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Thin.ttf"
15285
+ "path": "node_modules/@monaco-editor/loader/lib/es/config/index.js",
15286
+ "kind": "import-statement",
15287
+ "original": "../config/index.js"
15126
15288
  },
15127
15289
  {
15128
- "path": "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Light.ttf",
15129
- "kind": "url-token",
15130
- "original": "../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Light.ttf"
15290
+ "path": "node_modules/@monaco-editor/loader/lib/es/validators/index.js",
15291
+ "kind": "import-statement",
15292
+ "original": "../validators/index.js"
15131
15293
  },
15132
15294
  {
15133
- "path": "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Regular.ttf",
15134
- "kind": "url-token",
15135
- "original": "../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Regular.ttf"
15295
+ "path": "node_modules/@monaco-editor/loader/lib/es/utils/compose.js",
15296
+ "kind": "import-statement",
15297
+ "original": "../utils/compose.js"
15136
15298
  },
15137
15299
  {
15138
- "path": "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Medium.ttf",
15139
- "kind": "url-token",
15140
- "original": "../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Medium.ttf"
15300
+ "path": "node_modules/@monaco-editor/loader/lib/es/utils/deepMerge.js",
15301
+ "kind": "import-statement",
15302
+ "original": "../utils/deepMerge.js"
15141
15303
  },
15142
15304
  {
15143
- "path": "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Bold.ttf",
15144
- "kind": "url-token",
15145
- "original": "../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Bold.ttf"
15305
+ "path": "node_modules/@monaco-editor/loader/lib/es/utils/makeCancelable.js",
15306
+ "kind": "import-statement",
15307
+ "original": "../utils/makeCancelable.js"
15146
15308
  },
15147
15309
  {
15148
- "path": "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-ExtraBold.ttf",
15149
- "kind": "url-token",
15150
- "original": "../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-ExtraBold.ttf"
15310
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15311
+ "kind": "import-statement",
15312
+ "external": true
15151
15313
  },
15152
15314
  {
15153
- "path": "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Black.ttf",
15154
- "kind": "url-token",
15155
- "original": "../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Black.ttf"
15315
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15316
+ "kind": "import-statement",
15317
+ "external": true
15156
15318
  },
15157
15319
  {
15158
- "path": "data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100\" height=\"100\" viewBox=\"0 0 100 100\"><circle cx=\"10\" cy=\"10\" r=\"0.5\" fill=\"white\"/><circle cx=\"30\" cy=\"25\" r=\"0.5\" fill=\"white\"/><circle cx=\"70\" cy=\"15\" r=\"0.5\" fill=\"white\"/><circle cx=\"90\" cy=\"40\" r=\"0.5\" fill=\"white\"/><circle cx=\"20\" cy=\"60\" r=\"0.5\" fill=\"white\"/><circle cx=\"50\" cy=\"70\" r=\"0.5\" fill=\"white\"/><circle cx=\"80\" cy=\"85\" r=\"0.5\" fill=\"white\"/></svg>",
15159
- "kind": "url-token",
15320
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15321
+ "kind": "import-statement",
15160
15322
  "external": true
15161
15323
  }
15162
- ]
15324
+ ],
15325
+ "format": "esm"
15163
15326
  },
15164
- "src/components/pure/TestPageView.test/index.tsx": {
15165
- "bytes": 520,
15327
+ "node_modules/@monaco-editor/loader/lib/es/index.js": {
15328
+ "bytes": 85,
15166
15329
  "imports": [
15167
15330
  {
15168
- "path": "../testeranto-react/src/react-dom/jsx/web.ts",
15331
+ "path": "node_modules/@monaco-editor/loader/lib/es/loader/index.js",
15169
15332
  "kind": "import-statement",
15170
- "original": "testeranto-react/src/react-dom/jsx/web"
15333
+ "original": "./loader/index.js"
15171
15334
  },
15172
15335
  {
15173
- "path": "node_modules/react-router-dom/dist/index.mjs",
15336
+ "path": "node_modules/@monaco-editor/loader/lib/es/loader/index.js",
15174
15337
  "kind": "import-statement",
15175
- "original": "react-router-dom"
15338
+ "original": "./loader/index.js"
15176
15339
  },
15177
15340
  {
15178
- "path": "src/components/pure/TestPageView.test/implementation.ts",
15341
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15179
15342
  "kind": "import-statement",
15180
- "original": "./implementation"
15343
+ "external": true
15181
15344
  },
15182
15345
  {
15183
- "path": "src/components/pure/TestPageView.test/specification.ts",
15184
- "kind": "import-statement",
15185
- "original": "./specification"
15186
- },
15187
- {
15188
- "path": "src/components/pure/TestPageView.tsx",
15189
- "kind": "import-statement",
15190
- "original": "../TestPageView"
15191
- },
15192
- {
15193
- "path": "node_modules/react/index.js",
15194
- "kind": "import-statement",
15195
- "original": "react"
15196
- },
15197
- {
15198
- "path": "src/App.scss",
15199
- "kind": "import-statement",
15200
- "original": "./../../../App.scss"
15201
- },
15202
- {
15203
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15204
- "kind": "import-statement",
15205
- "external": true
15206
- },
15207
- {
15208
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15346
+ "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15209
15347
  "kind": "import-statement",
15210
15348
  "external": true
15211
15349
  },
@@ -15217,153 +15355,83 @@
15217
15355
  ],
15218
15356
  "format": "esm"
15219
15357
  },
15220
- "../testeranto-react/node_modules/scheduler/cjs/scheduler.development.js": {
15221
- "bytes": 17497,
15222
- "imports": [
15223
- {
15224
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15225
- "kind": "import-statement",
15226
- "external": true
15227
- },
15228
- {
15229
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15230
- "kind": "import-statement",
15231
- "external": true
15232
- },
15233
- {
15234
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15235
- "kind": "import-statement",
15236
- "external": true
15237
- }
15238
- ],
15239
- "format": "cjs"
15240
- },
15241
- "../testeranto-react/node_modules/scheduler/index.js": {
15242
- "bytes": 198,
15358
+ "node_modules/@monaco-editor/react/dist/index.mjs": {
15359
+ "bytes": 6528,
15243
15360
  "imports": [
15244
15361
  {
15245
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15246
- "kind": "import-statement",
15247
- "external": true
15248
- },
15249
- {
15250
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15362
+ "path": "node_modules/@monaco-editor/loader/lib/es/index.js",
15251
15363
  "kind": "import-statement",
15252
- "external": true
15364
+ "original": "@monaco-editor/loader"
15253
15365
  },
15254
15366
  {
15255
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15367
+ "path": "node_modules/react/index.js",
15256
15368
  "kind": "import-statement",
15257
- "external": true
15369
+ "original": "react"
15258
15370
  },
15259
15371
  {
15260
- "path": "../testeranto-react/node_modules/scheduler/cjs/scheduler.development.js",
15261
- "kind": "require-call",
15262
- "original": "./cjs/scheduler.development.js"
15263
- }
15264
- ],
15265
- "format": "cjs"
15266
- },
15267
- "../testeranto-react/node_modules/react-dom/cjs/react-dom.development.js": {
15268
- "bytes": 1026501,
15269
- "imports": [
15270
- {
15271
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15372
+ "path": "node_modules/react/index.js",
15272
15373
  "kind": "import-statement",
15273
- "external": true
15374
+ "original": "react"
15274
15375
  },
15275
15376
  {
15276
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15377
+ "path": "node_modules/@monaco-editor/loader/lib/es/index.js",
15277
15378
  "kind": "import-statement",
15278
- "external": true
15379
+ "original": "@monaco-editor/loader"
15279
15380
  },
15280
15381
  {
15281
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15382
+ "path": "node_modules/react/index.js",
15282
15383
  "kind": "import-statement",
15283
- "external": true
15384
+ "original": "react"
15284
15385
  },
15285
15386
  {
15286
15387
  "path": "node_modules/react/index.js",
15287
- "kind": "require-call",
15388
+ "kind": "import-statement",
15288
15389
  "original": "react"
15289
15390
  },
15290
15391
  {
15291
- "path": "../testeranto-react/node_modules/scheduler/index.js",
15292
- "kind": "require-call",
15293
- "original": "scheduler"
15294
- }
15295
- ],
15296
- "format": "cjs"
15297
- },
15298
- "../testeranto-react/node_modules/react-dom/index.js": {
15299
- "bytes": 1363,
15300
- "imports": [
15301
- {
15302
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15392
+ "path": "node_modules/react/index.js",
15303
15393
  "kind": "import-statement",
15304
- "external": true
15394
+ "original": "react"
15305
15395
  },
15306
15396
  {
15307
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15397
+ "path": "node_modules/react/index.js",
15308
15398
  "kind": "import-statement",
15309
- "external": true
15399
+ "original": "react"
15310
15400
  },
15311
15401
  {
15312
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15402
+ "path": "node_modules/react/index.js",
15313
15403
  "kind": "import-statement",
15314
- "external": true
15404
+ "original": "react"
15315
15405
  },
15316
15406
  {
15317
- "path": "../testeranto-react/node_modules/react-dom/cjs/react-dom.development.js",
15318
- "kind": "require-call",
15319
- "original": "./cjs/react-dom.development.js"
15320
- }
15321
- ],
15322
- "format": "cjs"
15323
- },
15324
- "../testeranto-react/node_modules/react-dom/client.js": {
15325
- "bytes": 619,
15326
- "imports": [
15327
- {
15328
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15407
+ "path": "node_modules/react/index.js",
15329
15408
  "kind": "import-statement",
15330
- "external": true
15409
+ "original": "react"
15331
15410
  },
15332
15411
  {
15333
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15412
+ "path": "node_modules/@monaco-editor/loader/lib/es/index.js",
15334
15413
  "kind": "import-statement",
15335
- "external": true
15414
+ "original": "@monaco-editor/loader"
15336
15415
  },
15337
15416
  {
15338
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15417
+ "path": "node_modules/react/index.js",
15339
15418
  "kind": "import-statement",
15340
- "external": true
15419
+ "original": "react"
15341
15420
  },
15342
- {
15343
- "path": "../testeranto-react/node_modules/react-dom/index.js",
15344
- "kind": "require-call",
15345
- "original": "react-dom"
15346
- }
15347
- ],
15348
- "format": "cjs"
15349
- },
15350
- "../testeranto-react/src/react-dom/component/dynamic.ts": {
15351
- "bytes": 3623,
15352
- "imports": [
15353
15421
  {
15354
15422
  "path": "node_modules/react/index.js",
15355
15423
  "kind": "import-statement",
15356
15424
  "original": "react"
15357
15425
  },
15358
15426
  {
15359
- "path": "../testeranto-react/node_modules/react-dom/client.js",
15427
+ "path": "node_modules/@monaco-editor/loader/lib/es/index.js",
15360
15428
  "kind": "import-statement",
15361
- "original": "react-dom/client"
15429
+ "original": "@monaco-editor/loader"
15362
15430
  },
15363
15431
  {
15364
- "path": "testeranto/src/CoreTypes",
15432
+ "path": "node_modules/react/index.js",
15365
15433
  "kind": "import-statement",
15366
- "external": true
15434
+ "original": "react"
15367
15435
  },
15368
15436
  {
15369
15437
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
@@ -15383,38 +15451,23 @@
15383
15451
  ],
15384
15452
  "format": "esm"
15385
15453
  },
15386
- "../testeranto-react/src/react-dom/component/web.ts": {
15387
- "bytes": 3555,
15454
+ "src/components/pure/NavBar.tsx": {
15455
+ "bytes": 3448,
15388
15456
  "imports": [
15389
15457
  {
15390
- "path": "src/Web.ts",
15391
- "kind": "import-statement",
15392
- "original": "testeranto/src/Web"
15393
- },
15394
- {
15395
- "path": "testeranto/src/CoreTypes",
15396
- "kind": "import-statement",
15397
- "external": true
15398
- },
15399
- {
15400
- "path": "../testeranto-react/src/react-dom/component/dynamic.ts",
15401
- "kind": "import-statement",
15402
- "original": "./dynamic.js"
15403
- },
15404
- {
15405
- "path": "react-dom/client",
15458
+ "path": "node_modules/react/index.js",
15406
15459
  "kind": "import-statement",
15407
- "external": true
15460
+ "original": "react"
15408
15461
  },
15409
15462
  {
15410
- "path": "../../mocks/mockReactComponent.js",
15463
+ "path": "node_modules/react-bootstrap/esm/index.js",
15411
15464
  "kind": "import-statement",
15412
- "external": true
15465
+ "original": "react-bootstrap"
15413
15466
  },
15414
15467
  {
15415
- "path": "chai",
15468
+ "path": "node_modules/react-router-dom/dist/index.mjs",
15416
15469
  "kind": "import-statement",
15417
- "external": true
15470
+ "original": "react-router-dom"
15418
15471
  },
15419
15472
  {
15420
15473
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
@@ -15434,23 +15487,18 @@
15434
15487
  ],
15435
15488
  "format": "esm"
15436
15489
  },
15437
- "src/components/pure/ProjectPageView.test/implementation.tsx": {
15438
- "bytes": 5089,
15490
+ "src/components/TestStatusBadge.tsx": {
15491
+ "bytes": 1613,
15439
15492
  "imports": [
15440
15493
  {
15441
- "path": "node_modules/chai/chai.js",
15442
- "kind": "import-statement",
15443
- "original": "chai"
15444
- },
15445
- {
15446
- "path": "../../../CoreTypes",
15494
+ "path": "node_modules/react/index.js",
15447
15495
  "kind": "import-statement",
15448
- "external": true
15496
+ "original": "react"
15449
15497
  },
15450
15498
  {
15451
- "path": "./types",
15499
+ "path": "node_modules/react-bootstrap/esm/index.js",
15452
15500
  "kind": "import-statement",
15453
- "external": true
15501
+ "original": "react-bootstrap"
15454
15502
  },
15455
15503
  {
15456
15504
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
@@ -15470,44 +15518,28 @@
15470
15518
  ],
15471
15519
  "format": "esm"
15472
15520
  },
15473
- "src/components/pure/ProjectPageView.test/specification.ts": {
15474
- "bytes": 1280,
15521
+ "src/components/pure/TestPageView.tsx": {
15522
+ "bytes": 36124,
15475
15523
  "imports": [
15476
15524
  {
15477
- "path": "../../../CoreTypes",
15478
- "kind": "import-statement",
15479
- "external": true
15480
- },
15481
- {
15482
- "path": "./types",
15525
+ "path": "node_modules/react/index.js",
15483
15526
  "kind": "import-statement",
15484
- "external": true
15527
+ "original": "react"
15485
15528
  },
15486
15529
  {
15487
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15530
+ "path": "node_modules/react-bootstrap/esm/index.js",
15488
15531
  "kind": "import-statement",
15489
- "external": true
15532
+ "original": "react-bootstrap"
15490
15533
  },
15491
15534
  {
15492
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15535
+ "path": "node_modules/react-router-dom/dist/index.mjs",
15493
15536
  "kind": "import-statement",
15494
- "external": true
15537
+ "original": "react-router-dom"
15495
15538
  },
15496
15539
  {
15497
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15498
- "kind": "import-statement",
15499
- "external": true
15500
- }
15501
- ],
15502
- "format": "esm"
15503
- },
15504
- "src/components/pure/ProjectPageView.tsx": {
15505
- "bytes": 14548,
15506
- "imports": [
15507
- {
15508
- "path": "node_modules/react/index.js",
15540
+ "path": "src/utils/logFiles.ts",
15509
15541
  "kind": "import-statement",
15510
- "original": "react"
15542
+ "original": "../../utils/logFiles"
15511
15543
  },
15512
15544
  {
15513
15545
  "path": "node_modules/react-bootstrap/esm/index.js",
@@ -15515,9 +15547,9 @@
15515
15547
  "original": "react-bootstrap"
15516
15548
  },
15517
15549
  {
15518
- "path": "src/components/TestStatusBadge.tsx",
15550
+ "path": "node_modules/@monaco-editor/react/dist/index.mjs",
15519
15551
  "kind": "import-statement",
15520
- "original": "../TestStatusBadge"
15552
+ "original": "@monaco-editor/react"
15521
15553
  },
15522
15554
  {
15523
15555
  "path": "src/components/pure/NavBar.tsx",
@@ -15525,9 +15557,9 @@
15525
15557
  "original": "./NavBar"
15526
15558
  },
15527
15559
  {
15528
- "path": "src/App.scss",
15560
+ "path": "src/components/TestStatusBadge.tsx",
15529
15561
  "kind": "import-statement",
15530
- "original": "./../../App.scss"
15562
+ "original": "../TestStatusBadge"
15531
15563
  },
15532
15564
  {
15533
15565
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
@@ -15547,224 +15579,227 @@
15547
15579
  ],
15548
15580
  "format": "esm"
15549
15581
  },
15550
- "src/components/pure/ProjectPageView.test/index.tsx": {
15551
- "bytes": 570,
15582
+ "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Thin.ttf": {
15583
+ "bytes": 2819076,
15584
+ "imports": []
15585
+ },
15586
+ "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Light.ttf": {
15587
+ "bytes": 3193048,
15588
+ "imports": []
15589
+ },
15590
+ "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Regular.ttf": {
15591
+ "bytes": 3284152,
15592
+ "imports": []
15593
+ },
15594
+ "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Medium.ttf": {
15595
+ "bytes": 3325496,
15596
+ "imports": []
15597
+ },
15598
+ "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Bold.ttf": {
15599
+ "bytes": 3432832,
15600
+ "imports": []
15601
+ },
15602
+ "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-ExtraBold.ttf": {
15603
+ "bytes": 3515332,
15604
+ "imports": []
15605
+ },
15606
+ "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Black.ttf": {
15607
+ "bytes": 3521968,
15608
+ "imports": []
15609
+ },
15610
+ "src/App.scss": {
15611
+ "bytes": 281672,
15552
15612
  "imports": [
15553
15613
  {
15554
- "path": "../testeranto-react/src/react-dom/component/web.ts",
15555
- "kind": "import-statement",
15556
- "original": "testeranto-react/src/react-dom/component/web"
15614
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
15615
+ "kind": "url-token",
15616
+ "external": true
15557
15617
  },
15558
15618
  {
15559
- "path": "node_modules/react-router-dom/dist/index.mjs",
15560
- "kind": "import-statement",
15561
- "original": "react-router-dom"
15619
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
15620
+ "kind": "url-token",
15621
+ "external": true
15562
15622
  },
15563
15623
  {
15564
- "path": "src/components/pure/ProjectPageView.test/implementation.tsx",
15565
- "kind": "import-statement",
15566
- "original": "./implementation"
15624
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e",
15625
+ "kind": "url-token",
15626
+ "external": true
15567
15627
  },
15568
15628
  {
15569
- "path": "src/components/pure/ProjectPageView.test/specification.ts",
15570
- "kind": "import-statement",
15571
- "original": "./specification"
15629
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e",
15630
+ "kind": "url-token",
15631
+ "external": true
15572
15632
  },
15573
15633
  {
15574
- "path": "src/components/pure/ProjectPageView.tsx",
15575
- "kind": "import-statement",
15576
- "original": "../ProjectPageView"
15634
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e",
15635
+ "kind": "url-token",
15636
+ "external": true
15577
15637
  },
15578
15638
  {
15579
- "path": "node_modules/react/index.js",
15580
- "kind": "import-statement",
15581
- "original": "react"
15639
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e",
15640
+ "kind": "url-token",
15641
+ "external": true
15582
15642
  },
15583
15643
  {
15584
- "path": "./../../../App.scss",
15585
- "kind": "import-statement",
15644
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e",
15645
+ "kind": "url-token",
15586
15646
  "external": true
15587
15647
  },
15588
15648
  {
15589
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15590
- "kind": "import-statement",
15649
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e",
15650
+ "kind": "url-token",
15591
15651
  "external": true
15592
15652
  },
15593
15653
  {
15594
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15595
- "kind": "import-statement",
15654
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e",
15655
+ "kind": "url-token",
15596
15656
  "external": true
15597
15657
  },
15598
15658
  {
15599
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15600
- "kind": "import-statement",
15659
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e",
15660
+ "kind": "url-token",
15601
15661
  "external": true
15602
- }
15603
- ],
15604
- "format": "esm"
15605
- },
15606
- "src/components/pure/ModalContent.test/implementation.tsx": {
15607
- "bytes": 1122,
15608
- "imports": [
15609
- {
15610
- "path": "node_modules/chai/chai.js",
15611
- "kind": "import-statement",
15612
- "original": "chai"
15613
15662
  },
15614
15663
  {
15615
- "path": "../../../CoreTypes",
15616
- "kind": "import-statement",
15664
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e",
15665
+ "kind": "url-token",
15617
15666
  "external": true
15618
15667
  },
15619
15668
  {
15620
- "path": "./types",
15621
- "kind": "import-statement",
15669
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e",
15670
+ "kind": "url-token",
15622
15671
  "external": true
15623
15672
  },
15624
15673
  {
15625
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15626
- "kind": "import-statement",
15674
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e",
15675
+ "kind": "url-token",
15627
15676
  "external": true
15628
15677
  },
15629
15678
  {
15630
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15631
- "kind": "import-statement",
15679
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e",
15680
+ "kind": "url-token",
15632
15681
  "external": true
15633
15682
  },
15634
15683
  {
15635
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15636
- "kind": "import-statement",
15684
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e",
15685
+ "kind": "url-token",
15637
15686
  "external": true
15638
- }
15639
- ],
15640
- "format": "esm"
15641
- },
15642
- "src/components/pure/ModalContent.test/specification.ts": {
15643
- "bytes": 620,
15644
- "imports": [
15687
+ },
15645
15688
  {
15646
- "path": "../../../CoreTypes",
15647
- "kind": "import-statement",
15689
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e",
15690
+ "kind": "url-token",
15648
15691
  "external": true
15649
15692
  },
15650
15693
  {
15651
- "path": "./types",
15652
- "kind": "import-statement",
15694
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
15695
+ "kind": "url-token",
15653
15696
  "external": true
15654
15697
  },
15655
15698
  {
15656
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15657
- "kind": "import-statement",
15699
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgb%285.2, 44, 101.2%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
15700
+ "kind": "url-token",
15658
15701
  "external": true
15659
15702
  },
15660
15703
  {
15661
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15662
- "kind": "import-statement",
15704
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e",
15705
+ "kind": "url-token",
15663
15706
  "external": true
15664
15707
  },
15665
15708
  {
15666
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15667
- "kind": "import-statement",
15709
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e",
15710
+ "kind": "url-token",
15668
15711
  "external": true
15669
- }
15670
- ],
15671
- "format": "esm"
15672
- },
15673
- "src/components/pure/ThemeCard.tsx": {
15674
- "bytes": 797,
15675
- "imports": [
15676
- {
15677
- "path": "node_modules/react/index.js",
15678
- "kind": "import-statement",
15679
- "original": "react"
15680
15712
  },
15681
15713
  {
15682
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15683
- "kind": "import-statement",
15714
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e",
15715
+ "kind": "url-token",
15684
15716
  "external": true
15685
15717
  },
15686
15718
  {
15687
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15688
- "kind": "import-statement",
15719
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e",
15720
+ "kind": "url-token",
15689
15721
  "external": true
15690
15722
  },
15691
15723
  {
15692
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15693
- "kind": "import-statement",
15724
+ "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e",
15725
+ "kind": "url-token",
15694
15726
  "external": true
15695
- }
15696
- ],
15697
- "format": "esm"
15698
- },
15699
- "src/components/pure/ModalContent.tsx": {
15700
- "bytes": 5906,
15701
- "imports": [
15727
+ },
15702
15728
  {
15703
- "path": "node_modules/react/index.js",
15704
- "kind": "import-statement",
15705
- "original": "react"
15729
+ "path": "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Thin.ttf",
15730
+ "kind": "url-token",
15731
+ "original": "../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Thin.ttf"
15706
15732
  },
15707
15733
  {
15708
- "path": "node_modules/react-bootstrap/esm/index.js",
15709
- "kind": "import-statement",
15710
- "original": "react-bootstrap"
15734
+ "path": "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Light.ttf",
15735
+ "kind": "url-token",
15736
+ "original": "../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Light.ttf"
15711
15737
  },
15712
15738
  {
15713
- "path": "src/components/pure/ThemeCard.tsx",
15714
- "kind": "import-statement",
15715
- "original": "./ThemeCard"
15739
+ "path": "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Regular.ttf",
15740
+ "kind": "url-token",
15741
+ "original": "../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Regular.ttf"
15716
15742
  },
15717
15743
  {
15718
- "path": "src/App.scss",
15719
- "kind": "import-statement",
15720
- "original": "../../App.scss"
15744
+ "path": "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Medium.ttf",
15745
+ "kind": "url-token",
15746
+ "original": "../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Medium.ttf"
15721
15747
  },
15722
15748
  {
15723
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15724
- "kind": "import-statement",
15725
- "external": true
15749
+ "path": "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Bold.ttf",
15750
+ "kind": "url-token",
15751
+ "original": "../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Bold.ttf"
15726
15752
  },
15727
15753
  {
15728
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
15729
- "kind": "import-statement",
15730
- "external": true
15754
+ "path": "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-ExtraBold.ttf",
15755
+ "kind": "url-token",
15756
+ "original": "../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-ExtraBold.ttf"
15731
15757
  },
15732
15758
  {
15733
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
15734
- "kind": "import-statement",
15735
- "external": true
15759
+ "path": "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Black.ttf",
15760
+ "kind": "url-token",
15761
+ "original": "../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Black.ttf"
15736
15762
  }
15737
- ],
15738
- "format": "esm"
15763
+ ]
15739
15764
  },
15740
- "src/components/pure/ModalContent.test/index.tsx": {
15741
- "bytes": 409,
15765
+ "src/components/pure/TestPageView.test/index.tsx": {
15766
+ "bytes": 520,
15742
15767
  "imports": [
15743
15768
  {
15744
- "path": "../testeranto-react/src/react-dom/component/web.ts",
15769
+ "path": "node_modules/testeranto-react/src/react-dom/jsx/web.ts",
15745
15770
  "kind": "import-statement",
15746
- "original": "testeranto-react/src/react-dom/component/web"
15771
+ "original": "testeranto-react/src/react-dom/jsx/web"
15772
+ },
15773
+ {
15774
+ "path": "node_modules/react-router-dom/dist/index.mjs",
15775
+ "kind": "import-statement",
15776
+ "original": "react-router-dom"
15747
15777
  },
15748
15778
  {
15749
- "path": "src/components/pure/ModalContent.test/implementation.tsx",
15779
+ "path": "src/components/pure/TestPageView.test/implementation.ts",
15750
15780
  "kind": "import-statement",
15751
15781
  "original": "./implementation"
15752
15782
  },
15753
15783
  {
15754
- "path": "src/components/pure/ModalContent.test/specification.ts",
15784
+ "path": "src/components/pure/TestPageView.test/specification.ts",
15755
15785
  "kind": "import-statement",
15756
15786
  "original": "./specification"
15757
15787
  },
15758
15788
  {
15759
- "path": "src/components/pure/ModalContent.tsx",
15789
+ "path": "src/components/pure/TestPageView.tsx",
15760
15790
  "kind": "import-statement",
15761
- "original": "../ModalContent"
15791
+ "original": "../TestPageView"
15762
15792
  },
15763
15793
  {
15764
15794
  "path": "node_modules/react/index.js",
15765
15795
  "kind": "import-statement",
15766
15796
  "original": "react"
15767
15797
  },
15798
+ {
15799
+ "path": "src/App.scss",
15800
+ "kind": "import-statement",
15801
+ "original": "./../../../App.scss"
15802
+ },
15768
15803
  {
15769
15804
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
15770
15805
  "kind": "import-statement",
@@ -15783,26 +15818,21 @@
15783
15818
  ],
15784
15819
  "format": "esm"
15785
15820
  },
15786
- "src/lib/BaseSuite.test/mock.ts": {
15787
- "bytes": 2797,
15821
+ "node_modules/testeranto-react/src/react-dom/component/dynamic.ts": {
15822
+ "bytes": 3622,
15788
15823
  "imports": [
15789
15824
  {
15790
- "path": "src/lib/abstractBase.ts",
15791
- "kind": "import-statement",
15792
- "original": "../abstractBase"
15793
- },
15794
- {
15795
- "path": "src/lib/BaseSuite.ts",
15825
+ "path": "node_modules/react/index.js",
15796
15826
  "kind": "import-statement",
15797
- "original": "../BaseSuite"
15827
+ "original": "react"
15798
15828
  },
15799
15829
  {
15800
- "path": "../types",
15830
+ "path": "node_modules/react-dom/client.js",
15801
15831
  "kind": "import-statement",
15802
- "external": true
15832
+ "original": "react-dom/client"
15803
15833
  },
15804
15834
  {
15805
- "path": "./test",
15835
+ "path": "testeranto/src/CoreTypes",
15806
15836
  "kind": "import-statement",
15807
15837
  "external": true
15808
15838
  },
@@ -15824,33 +15854,38 @@
15824
15854
  ],
15825
15855
  "format": "esm"
15826
15856
  },
15827
- "src/lib/BaseSuite.test/test.ts": {
15828
- "bytes": 11841,
15857
+ "node_modules/testeranto-react/src/react-dom/component/web.ts": {
15858
+ "bytes": 3563,
15829
15859
  "imports": [
15830
15860
  {
15831
- "path": "..",
15861
+ "path": "src/Web.ts",
15832
15862
  "kind": "import-statement",
15833
- "external": true
15863
+ "original": "testeranto/src/Web"
15834
15864
  },
15835
15865
  {
15836
- "path": "../../CoreTypes",
15866
+ "path": "testeranto/src/CoreTypes",
15837
15867
  "kind": "import-statement",
15838
15868
  "external": true
15839
15869
  },
15840
15870
  {
15841
- "path": "../BaseSuite",
15871
+ "path": "node_modules/testeranto-react/src/react-dom/component/dynamic.ts",
15872
+ "kind": "import-statement",
15873
+ "original": "./dynamic.js"
15874
+ },
15875
+ {
15876
+ "path": "react-dom/client",
15842
15877
  "kind": "import-statement",
15843
15878
  "external": true
15844
15879
  },
15845
15880
  {
15846
- "path": "../types",
15881
+ "path": "../../mocks/mockReactComponent.js",
15847
15882
  "kind": "import-statement",
15848
15883
  "external": true
15849
15884
  },
15850
15885
  {
15851
- "path": "src/lib/BaseSuite.test/mock.ts",
15886
+ "path": "chai",
15852
15887
  "kind": "import-statement",
15853
- "original": "./mock"
15888
+ "external": true
15854
15889
  },
15855
15890
  {
15856
15891
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
@@ -15870,23 +15905,23 @@
15870
15905
  ],
15871
15906
  "format": "esm"
15872
15907
  },
15873
- "src/lib/BaseSuite.test/web.test.ts": {
15874
- "bytes": 319,
15908
+ "src/components/pure/ProjectPageView.test/implementation.tsx": {
15909
+ "bytes": 6141,
15875
15910
  "imports": [
15876
15911
  {
15877
- "path": "src/Web.ts",
15912
+ "path": "node_modules/chai/index.js",
15878
15913
  "kind": "import-statement",
15879
- "original": "../../Web"
15914
+ "original": "chai"
15880
15915
  },
15881
15916
  {
15882
- "path": "src/lib/BaseSuite.ts",
15917
+ "path": "../../../CoreTypes",
15883
15918
  "kind": "import-statement",
15884
- "original": "../BaseSuite"
15919
+ "external": true
15885
15920
  },
15886
15921
  {
15887
- "path": "src/lib/BaseSuite.test/test.ts",
15922
+ "path": "./types",
15888
15923
  "kind": "import-statement",
15889
- "original": "./test"
15924
+ "external": true
15890
15925
  },
15891
15926
  {
15892
15927
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
@@ -15906,16 +15941,16 @@
15906
15941
  ],
15907
15942
  "format": "esm"
15908
15943
  },
15909
- "src/lib/baseBuilder.test/baseBuilder.test.specification.ts": {
15910
- "bytes": 985,
15944
+ "src/components/pure/ProjectPageView.test/specification.ts": {
15945
+ "bytes": 1280,
15911
15946
  "imports": [
15912
15947
  {
15913
- "path": "../../CoreTypes",
15948
+ "path": "../../../CoreTypes",
15914
15949
  "kind": "import-statement",
15915
15950
  "external": true
15916
15951
  },
15917
15952
  {
15918
- "path": "./baseBuilder.test.types",
15953
+ "path": "./types",
15919
15954
  "kind": "import-statement",
15920
15955
  "external": true
15921
15956
  },
@@ -15937,28 +15972,33 @@
15937
15972
  ],
15938
15973
  "format": "esm"
15939
15974
  },
15940
- "src/lib/baseBuilder.test/baseBuilder.test.mock.ts": {
15941
- "bytes": 2215,
15975
+ "src/components/pure/ProjectPageView.tsx": {
15976
+ "bytes": 14548,
15942
15977
  "imports": [
15943
15978
  {
15944
- "path": "../../CoreTypes",
15979
+ "path": "node_modules/react/index.js",
15945
15980
  "kind": "import-statement",
15946
- "external": true
15981
+ "original": "react"
15947
15982
  },
15948
15983
  {
15949
- "path": "src/lib/basebuilder.ts",
15984
+ "path": "node_modules/react-bootstrap/esm/index.js",
15950
15985
  "kind": "import-statement",
15951
- "original": "../basebuilder"
15986
+ "original": "react-bootstrap"
15952
15987
  },
15953
15988
  {
15954
- "path": "../types",
15989
+ "path": "src/components/TestStatusBadge.tsx",
15955
15990
  "kind": "import-statement",
15956
- "external": true
15991
+ "original": "../TestStatusBadge"
15957
15992
  },
15958
15993
  {
15959
- "path": "..",
15994
+ "path": "src/components/pure/NavBar.tsx",
15960
15995
  "kind": "import-statement",
15961
- "external": true
15996
+ "original": "./NavBar"
15997
+ },
15998
+ {
15999
+ "path": "src/App.scss",
16000
+ "kind": "import-statement",
16001
+ "original": "./../../App.scss"
15962
16002
  },
15963
16003
  {
15964
16004
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
@@ -15978,64 +16018,38 @@
15978
16018
  ],
15979
16019
  "format": "esm"
15980
16020
  },
15981
- "src/lib/baseBuilder.test/baseBuilder.test.implementation.ts": {
15982
- "bytes": 4100,
16021
+ "src/components/pure/ProjectPageView.test/index.tsx": {
16022
+ "bytes": 527,
15983
16023
  "imports": [
15984
16024
  {
15985
- "path": "../../CoreTypes",
16025
+ "path": "node_modules/testeranto-react/src/react-dom/component/web.ts",
15986
16026
  "kind": "import-statement",
15987
- "external": true
16027
+ "original": "testeranto-react/src/react-dom/component/web"
15988
16028
  },
15989
16029
  {
15990
- "path": "src/lib/baseBuilder.test/baseBuilder.test.mock.ts",
16030
+ "path": "node_modules/react-router-dom/dist/index.mjs",
15991
16031
  "kind": "import-statement",
15992
- "original": "./baseBuilder.test.mock"
15993
- },
15994
- {
15995
- "path": "./baseBuilder.test.types",
15996
- "kind": "import-statement",
15997
- "external": true
15998
- },
15999
- {
16000
- "path": "..",
16001
- "kind": "import-statement",
16002
- "external": true
16003
- },
16004
- {
16005
- "path": "src/lib/basebuilder.ts",
16006
- "kind": "import-statement",
16007
- "original": "../basebuilder"
16032
+ "original": "react-router-dom"
16008
16033
  },
16009
16034
  {
16010
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
16035
+ "path": "src/components/pure/ProjectPageView.test/implementation.tsx",
16011
16036
  "kind": "import-statement",
16012
- "external": true
16037
+ "original": "./implementation"
16013
16038
  },
16014
16039
  {
16015
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
16040
+ "path": "src/components/pure/ProjectPageView.test/specification.ts",
16016
16041
  "kind": "import-statement",
16017
- "external": true
16042
+ "original": "./specification"
16018
16043
  },
16019
16044
  {
16020
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
16021
- "kind": "import-statement",
16022
- "external": true
16023
- }
16024
- ],
16025
- "format": "esm"
16026
- },
16027
- "src/lib/baseBuilder.test/baseBuilder.test.adapter.ts": {
16028
- "bytes": 720,
16029
- "imports": [
16030
- {
16031
- "path": "../../CoreTypes",
16045
+ "path": "src/components/pure/ProjectPageView.tsx",
16032
16046
  "kind": "import-statement",
16033
- "external": true
16047
+ "original": "../ProjectPageView"
16034
16048
  },
16035
16049
  {
16036
- "path": "./baseBuilder.test.types",
16050
+ "path": "node_modules/react/index.js",
16037
16051
  "kind": "import-statement",
16038
- "external": true
16052
+ "original": "react"
16039
16053
  },
16040
16054
  {
16041
16055
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
@@ -16055,38 +16069,28 @@
16055
16069
  ],
16056
16070
  "format": "esm"
16057
16071
  },
16058
- "src/lib/baseBuilder.test/baseBuilder.test.web.ts": {
16059
- "bytes": 518,
16072
+ "src/components/pure/FeaturesReporterView.test/implementation.tsx": {
16073
+ "bytes": 2755,
16060
16074
  "imports": [
16061
16075
  {
16062
- "path": "src/Web.ts",
16063
- "kind": "import-statement",
16064
- "original": "../../Web"
16065
- },
16066
- {
16067
- "path": "src/lib/baseBuilder.test/baseBuilder.test.specification.ts",
16076
+ "path": "node_modules/chai/index.js",
16068
16077
  "kind": "import-statement",
16069
- "original": "./baseBuilder.test.specification"
16070
- },
16071
- {
16072
- "path": "src/lib/baseBuilder.test/baseBuilder.test.implementation.ts",
16073
- "kind": "import-statement",
16074
- "original": "./baseBuilder.test.implementation"
16078
+ "original": "chai"
16075
16079
  },
16076
16080
  {
16077
- "path": "src/lib/baseBuilder.test/baseBuilder.test.adapter.ts",
16081
+ "path": "../../../CoreTypes",
16078
16082
  "kind": "import-statement",
16079
- "original": "./baseBuilder.test.adapter"
16083
+ "external": true
16080
16084
  },
16081
16085
  {
16082
- "path": "./baseBuilder.test.types",
16086
+ "path": "./types",
16083
16087
  "kind": "import-statement",
16084
16088
  "external": true
16085
16089
  },
16086
16090
  {
16087
- "path": "src/lib/baseBuilder.test/baseBuilder.test.mock.ts",
16091
+ "path": "../../../types/features",
16088
16092
  "kind": "import-statement",
16089
- "original": "./baseBuilder.test.mock"
16093
+ "external": true
16090
16094
  },
16091
16095
  {
16092
16096
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
@@ -16106,19 +16110,9 @@
16106
16110
  ],
16107
16111
  "format": "esm"
16108
16112
  },
16109
- "src/components/pure/AppFrame.test/implementation.tsx": {
16110
- "bytes": 2339,
16113
+ "src/components/pure/FeaturesReporterView.test/specification.ts": {
16114
+ "bytes": 1004,
16111
16115
  "imports": [
16112
- {
16113
- "path": "node_modules/chai/chai.js",
16114
- "kind": "import-statement",
16115
- "original": "chai"
16116
- },
16117
- {
16118
- "path": "node_modules/react/index.js",
16119
- "kind": "import-statement",
16120
- "original": "react"
16121
- },
16122
16116
  {
16123
16117
  "path": "../../../CoreTypes",
16124
16118
  "kind": "import-statement",
@@ -16147,16 +16141,16 @@
16147
16141
  ],
16148
16142
  "format": "esm"
16149
16143
  },
16150
- "src/components/pure/AppFrame.test/specification.ts": {
16151
- "bytes": 908,
16144
+ "src/components/pure/FeaturesReporterView.tsx": {
16145
+ "bytes": 923,
16152
16146
  "imports": [
16153
16147
  {
16154
- "path": "../../../CoreTypes",
16148
+ "path": "node_modules/react/index.js",
16155
16149
  "kind": "import-statement",
16156
- "external": true
16150
+ "original": "react"
16157
16151
  },
16158
16152
  {
16159
- "path": "./types",
16153
+ "path": "../../types/features",
16160
16154
  "kind": "import-statement",
16161
16155
  "external": true
16162
16156
  },
@@ -16178,54 +16172,38 @@
16178
16172
  ],
16179
16173
  "format": "esm"
16180
16174
  },
16181
- "src/components/SunriseAnimation.tsx": {
16182
- "bytes": 10363,
16175
+ "src/components/pure/FeaturesReporterView.test/index.tsx": {
16176
+ "bytes": 535,
16183
16177
  "imports": [
16184
16178
  {
16185
- "path": "node_modules/react/index.js",
16186
- "kind": "import-statement",
16187
- "original": "react"
16188
- },
16189
- {
16190
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
16179
+ "path": "node_modules/testeranto-react/src/react-dom/component/web.ts",
16191
16180
  "kind": "import-statement",
16192
- "external": true
16181
+ "original": "testeranto-react/src/react-dom/component/web"
16193
16182
  },
16194
16183
  {
16195
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
16184
+ "path": "node_modules/react-router-dom/dist/index.mjs",
16196
16185
  "kind": "import-statement",
16197
- "external": true
16186
+ "original": "react-router-dom"
16198
16187
  },
16199
16188
  {
16200
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
16201
- "kind": "import-statement",
16202
- "external": true
16203
- }
16204
- ],
16205
- "format": "esm"
16206
- },
16207
- "src/components/pure/SettingsButton.tsx": {
16208
- "bytes": 2208,
16209
- "imports": [
16210
- {
16211
- "path": "node_modules/react/index.js",
16189
+ "path": "src/components/pure/FeaturesReporterView.test/implementation.tsx",
16212
16190
  "kind": "import-statement",
16213
- "original": "react"
16191
+ "original": "./implementation"
16214
16192
  },
16215
16193
  {
16216
- "path": "node_modules/react-bootstrap/esm/index.js",
16194
+ "path": "src/components/pure/FeaturesReporterView.test/specification.ts",
16217
16195
  "kind": "import-statement",
16218
- "original": "react-bootstrap"
16196
+ "original": "./specification"
16219
16197
  },
16220
16198
  {
16221
- "path": "src/components/pure/ModalContent.tsx",
16199
+ "path": "src/components/pure/FeaturesReporterView.tsx",
16222
16200
  "kind": "import-statement",
16223
- "original": "./ModalContent"
16201
+ "original": "../FeaturesReporterView"
16224
16202
  },
16225
16203
  {
16226
- "path": "src/components/SunriseAnimation.tsx",
16204
+ "path": "node_modules/react/index.js",
16227
16205
  "kind": "import-statement",
16228
- "original": "../SunriseAnimation"
16206
+ "original": "react"
16229
16207
  },
16230
16208
  {
16231
16209
  "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
@@ -16244,327 +16222,130 @@
16244
16222
  }
16245
16223
  ],
16246
16224
  "format": "esm"
16247
- },
16248
- "src/components/pure/AppFrame.tsx": {
16249
- "bytes": 861,
16225
+ }
16226
+ },
16227
+ "outputs": {
16228
+ "testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs": {
16250
16229
  "imports": [
16251
16230
  {
16252
- "path": "node_modules/react/index.js",
16253
- "kind": "import-statement",
16254
- "original": "react"
16255
- },
16256
- {
16257
- "path": "node_modules/react-bootstrap/esm/index.js",
16258
- "kind": "import-statement",
16259
- "original": "react-bootstrap"
16231
+ "path": "testeranto/bundles/web/core/chunk-PV6EA47E.mjs",
16232
+ "kind": "import-statement"
16233
+ }
16234
+ ],
16235
+ "exports": [
16236
+ "default"
16237
+ ],
16238
+ "entryPoint": "src/lib/BaseSuite.test/web.test.ts",
16239
+ "inputs": {
16240
+ "src/lib/BaseSuite.test/web.test.ts": {
16241
+ "bytesInOutput": 148
16260
16242
  },
16261
- {
16262
- "path": "src/components/pure/SettingsButton.tsx",
16263
- "kind": "import-statement",
16264
- "original": "./SettingsButton"
16243
+ "src/lib/BaseSuite.test/test.ts": {
16244
+ "bytesInOutput": 7690
16265
16245
  },
16246
+ "src/lib/BaseSuite.test/mock.ts": {
16247
+ "bytesInOutput": 1527
16248
+ }
16249
+ },
16250
+ "bytes": 9748
16251
+ },
16252
+ "testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs": {
16253
+ "imports": [
16266
16254
  {
16267
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
16268
- "kind": "import-statement",
16269
- "external": true
16255
+ "path": "testeranto/bundles/web/core/chunk-A3JB5SVD.mjs",
16256
+ "kind": "import-statement"
16270
16257
  },
16271
16258
  {
16272
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
16273
- "kind": "import-statement",
16274
- "external": true
16259
+ "path": "testeranto/bundles/web/core/chunk-63ZYWIC2.mjs",
16260
+ "kind": "import-statement"
16275
16261
  },
16276
16262
  {
16277
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
16278
- "kind": "import-statement",
16279
- "external": true
16263
+ "path": "testeranto/bundles/web/core/chunk-PV6EA47E.mjs",
16264
+ "kind": "import-statement"
16280
16265
  }
16281
16266
  ],
16282
- "format": "esm"
16283
- },
16284
- "src/components/pure/AppFrame.test/index.tsx": {
16285
- "bytes": 536,
16286
- "imports": [
16287
- {
16288
- "path": "node_modules/react/index.js",
16289
- "kind": "import-statement",
16290
- "original": "react"
16267
+ "exports": [
16268
+ "default"
16269
+ ],
16270
+ "entryPoint": "src/components/pure/TestPageView.test/index.tsx",
16271
+ "cssBundle": "testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.css",
16272
+ "inputs": {
16273
+ "src/components/pure/TestPageView.test/index.tsx": {
16274
+ "bytesInOutput": 390
16291
16275
  },
16292
- {
16293
- "path": "../testeranto-react/src/react-dom/component/web.ts",
16294
- "kind": "import-statement",
16295
- "original": "testeranto-react/src/react-dom/component/web"
16276
+ "node_modules/testeranto-react/src/react-dom/jsx/web.ts": {
16277
+ "bytesInOutput": 255
16296
16278
  },
16297
- {
16298
- "path": "src/components/pure/AppFrame.test/implementation.tsx",
16299
- "kind": "import-statement",
16300
- "original": "./implementation"
16279
+ "node_modules/testeranto-react/src/react-dom/jsx/dynamic.ts": {
16280
+ "bytesInOutput": 1012
16301
16281
  },
16302
- {
16303
- "path": "src/components/pure/AppFrame.test/specification.ts",
16304
- "kind": "import-statement",
16305
- "original": "./specification"
16282
+ "src/components/pure/TestPageView.test/implementation.ts": {
16283
+ "bytesInOutput": 4379
16306
16284
  },
16307
- {
16308
- "path": "src/components/pure/AppFrame.tsx",
16309
- "kind": "import-statement",
16310
- "original": "../AppFrame"
16285
+ "src/components/pure/TestPageView.test/specification.ts": {
16286
+ "bytesInOutput": 1364
16311
16287
  },
16312
- {
16313
- "path": "src/App.scss",
16314
- "kind": "import-statement",
16315
- "original": "../../../App.scss"
16288
+ "src/components/pure/TestPageView.tsx": {
16289
+ "bytesInOutput": 25867
16316
16290
  },
16317
- {
16318
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
16319
- "kind": "import-statement",
16320
- "external": true
16291
+ "src/utils/logFiles.ts": {
16292
+ "bytesInOutput": 617
16321
16293
  },
16322
- {
16323
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
16324
- "kind": "import-statement",
16325
- "external": true
16294
+ "node_modules/@monaco-editor/react/dist/index.mjs": {
16295
+ "bytesInOutput": 8908
16326
16296
  },
16327
- {
16328
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
16329
- "kind": "import-statement",
16330
- "external": true
16331
- }
16332
- ],
16333
- "format": "esm"
16334
- },
16335
- "src/components/pure/FeaturesReporterView.test/implementation.tsx": {
16336
- "bytes": 2755,
16337
- "imports": [
16338
- {
16339
- "path": "node_modules/chai/chai.js",
16340
- "kind": "import-statement",
16341
- "original": "chai"
16297
+ "node_modules/@monaco-editor/loader/lib/es/index.js": {
16298
+ "bytesInOutput": 47
16342
16299
  },
16343
- {
16344
- "path": "../../../CoreTypes",
16345
- "kind": "import-statement",
16346
- "external": true
16300
+ "node_modules/@monaco-editor/loader/lib/es/loader/index.js": {
16301
+ "bytesInOutput": 2934
16347
16302
  },
16348
- {
16349
- "path": "./types",
16350
- "kind": "import-statement",
16351
- "external": true
16303
+ "node_modules/@monaco-editor/loader/lib/es/_virtual/_rollupPluginBabelHelpers.js": {
16304
+ "bytesInOutput": 3852
16352
16305
  },
16353
- {
16354
- "path": "../../../types/features",
16355
- "kind": "import-statement",
16356
- "external": true
16306
+ "node_modules/state-local/lib/es/state-local.js": {
16307
+ "bytesInOutput": 5601
16357
16308
  },
16358
- {
16359
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
16360
- "kind": "import-statement",
16361
- "external": true
16309
+ "node_modules/@monaco-editor/loader/lib/es/config/index.js": {
16310
+ "bytesInOutput": 176
16362
16311
  },
16363
- {
16364
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
16365
- "kind": "import-statement",
16366
- "external": true
16312
+ "node_modules/@monaco-editor/loader/lib/es/validators/index.js": {
16313
+ "bytesInOutput": 1251
16367
16314
  },
16368
- {
16369
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
16370
- "kind": "import-statement",
16371
- "external": true
16315
+ "node_modules/@monaco-editor/loader/lib/es/utils/curry.js": {
16316
+ "bytesInOutput": 595
16317
+ },
16318
+ "node_modules/@monaco-editor/loader/lib/es/utils/isObject.js": {
16319
+ "bytesInOutput": 164
16320
+ },
16321
+ "node_modules/@monaco-editor/loader/lib/es/utils/compose.js": {
16322
+ "bytesInOutput": 350
16323
+ },
16324
+ "node_modules/@monaco-editor/loader/lib/es/utils/deepMerge.js": {
16325
+ "bytesInOutput": 375
16326
+ },
16327
+ "node_modules/@monaco-editor/loader/lib/es/utils/makeCancelable.js": {
16328
+ "bytesInOutput": 562
16372
16329
  }
16373
- ],
16374
- "format": "esm"
16330
+ },
16331
+ "bytes": 60629
16375
16332
  },
16376
- "src/components/pure/FeaturesReporterView.test/specification.ts": {
16377
- "bytes": 1004,
16333
+ "testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs": {
16378
16334
  "imports": [
16379
16335
  {
16380
- "path": "../../../CoreTypes",
16381
- "kind": "import-statement",
16382
- "external": true
16336
+ "path": "testeranto/bundles/web/core/chunk-A3JB5SVD.mjs",
16337
+ "kind": "import-statement"
16383
16338
  },
16384
16339
  {
16385
- "path": "./types",
16386
- "kind": "import-statement",
16387
- "external": true
16340
+ "path": "testeranto/bundles/web/core/chunk-L6N2I5MB.mjs",
16341
+ "kind": "import-statement"
16388
16342
  },
16389
16343
  {
16390
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
16391
- "kind": "import-statement",
16392
- "external": true
16344
+ "path": "testeranto/bundles/web/core/chunk-63ZYWIC2.mjs",
16345
+ "kind": "import-statement"
16393
16346
  },
16394
16347
  {
16395
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
16396
- "kind": "import-statement",
16397
- "external": true
16398
- },
16399
- {
16400
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
16401
- "kind": "import-statement",
16402
- "external": true
16403
- }
16404
- ],
16405
- "format": "esm"
16406
- },
16407
- "src/components/pure/FeaturesReporterView.tsx": {
16408
- "bytes": 923,
16409
- "imports": [
16410
- {
16411
- "path": "node_modules/react/index.js",
16412
- "kind": "import-statement",
16413
- "original": "react"
16414
- },
16415
- {
16416
- "path": "../../types/features",
16417
- "kind": "import-statement",
16418
- "external": true
16419
- },
16420
- {
16421
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
16422
- "kind": "import-statement",
16423
- "external": true
16424
- },
16425
- {
16426
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
16427
- "kind": "import-statement",
16428
- "external": true
16429
- },
16430
- {
16431
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
16432
- "kind": "import-statement",
16433
- "external": true
16434
- }
16435
- ],
16436
- "format": "esm"
16437
- },
16438
- "src/components/pure/FeaturesReporterView.test/index.tsx": {
16439
- "bytes": 535,
16440
- "imports": [
16441
- {
16442
- "path": "../testeranto-react/src/react-dom/component/web.ts",
16443
- "kind": "import-statement",
16444
- "original": "testeranto-react/src/react-dom/component/web"
16445
- },
16446
- {
16447
- "path": "node_modules/react-router-dom/dist/index.mjs",
16448
- "kind": "import-statement",
16449
- "original": "react-router-dom"
16450
- },
16451
- {
16452
- "path": "src/components/pure/FeaturesReporterView.test/implementation.tsx",
16453
- "kind": "import-statement",
16454
- "original": "./implementation"
16455
- },
16456
- {
16457
- "path": "src/components/pure/FeaturesReporterView.test/specification.ts",
16458
- "kind": "import-statement",
16459
- "original": "./specification"
16460
- },
16461
- {
16462
- "path": "src/components/pure/FeaturesReporterView.tsx",
16463
- "kind": "import-statement",
16464
- "original": "../FeaturesReporterView"
16465
- },
16466
- {
16467
- "path": "node_modules/react/index.js",
16468
- "kind": "import-statement",
16469
- "original": "react"
16470
- },
16471
- {
16472
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js",
16473
- "kind": "import-statement",
16474
- "external": true
16475
- },
16476
- {
16477
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js",
16478
- "kind": "import-statement",
16479
- "external": true
16480
- },
16481
- {
16482
- "path": "/Users/adam/Code/testeranto/node_modules/esbuild-plugin-polyfill-node/polyfills/process.js",
16483
- "kind": "import-statement",
16484
- "external": true
16485
- }
16486
- ],
16487
- "format": "esm"
16488
- }
16489
- },
16490
- "outputs": {
16491
- "testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.mjs": {
16492
- "imports": [
16493
- {
16494
- "path": "testeranto/bundles/web/core/chunk-BADF3AZF.mjs",
16495
- "kind": "import-statement"
16496
- },
16497
- {
16498
- "path": "testeranto/bundles/web/core/chunk-FNXFUNA7.mjs",
16499
- "kind": "import-statement"
16500
- },
16501
- {
16502
- "path": "testeranto/bundles/web/core/chunk-QWII7WIM.mjs",
16503
- "kind": "import-statement"
16504
- },
16505
- {
16506
- "path": "testeranto/bundles/web/core/chunk-BXV27S2S.mjs",
16507
- "kind": "import-statement"
16508
- },
16509
- {
16510
- "path": "testeranto/bundles/web/core/chunk-LU364HVS.mjs",
16511
- "kind": "import-statement"
16512
- }
16513
- ],
16514
- "exports": [
16515
- "default"
16516
- ],
16517
- "entryPoint": "src/components/pure/TestPageView.test/index.tsx",
16518
- "cssBundle": "testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.css",
16519
- "inputs": {
16520
- "node_modules/react-dom/client.js": {
16521
- "bytesInOutput": 837
16522
- },
16523
- "src/components/pure/TestPageView.test/index.tsx": {
16524
- "bytesInOutput": 387
16525
- },
16526
- "../testeranto-react/src/react-dom/jsx/web.ts": {
16527
- "bytesInOutput": 255
16528
- },
16529
- "../testeranto-react/src/react-dom/jsx/dynamic.ts": {
16530
- "bytesInOutput": 692
16531
- },
16532
- "src/components/pure/TestPageView.test/implementation.ts": {
16533
- "bytesInOutput": 5294
16534
- },
16535
- "src/components/pure/TestPageView.test/specification.ts": {
16536
- "bytesInOutput": 1364
16537
- },
16538
- "src/components/pure/TestPageView.tsx": {
16539
- "bytesInOutput": 11795
16540
- }
16541
- },
16542
- "bytes": 21648
16543
- },
16544
- "testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.mjs": {
16545
- "imports": [
16546
- {
16547
- "path": "testeranto/bundles/web/core/chunk-BADF3AZF.mjs",
16548
- "kind": "import-statement"
16549
- },
16550
- {
16551
- "path": "testeranto/bundles/web/core/chunk-FNXFUNA7.mjs",
16552
- "kind": "import-statement"
16553
- },
16554
- {
16555
- "path": "testeranto/bundles/web/core/chunk-QWII7WIM.mjs",
16556
- "kind": "import-statement"
16557
- },
16558
- {
16559
- "path": "testeranto/bundles/web/core/chunk-VAYOSMXI.mjs",
16560
- "kind": "import-statement"
16561
- },
16562
- {
16563
- "path": "testeranto/bundles/web/core/chunk-BXV27S2S.mjs",
16564
- "kind": "import-statement"
16565
- },
16566
- {
16567
- "path": "testeranto/bundles/web/core/chunk-LU364HVS.mjs",
16348
+ "path": "testeranto/bundles/web/core/chunk-PV6EA47E.mjs",
16568
16349
  "kind": "import-statement"
16569
16350
  }
16570
16351
  ],
@@ -16578,7 +16359,7 @@
16578
16359
  "bytesInOutput": 404
16579
16360
  },
16580
16361
  "src/components/pure/ProjectPageView.test/implementation.tsx": {
16581
- "bytesInOutput": 4690
16362
+ "bytesInOutput": 5647
16582
16363
  },
16583
16364
  "src/components/pure/ProjectPageView.test/specification.ts": {
16584
16365
  "bytesInOutput": 1187
@@ -16587,292 +16368,76 @@
16587
16368
  "bytesInOutput": 14778
16588
16369
  }
16589
16370
  },
16590
- "bytes": 21996
16371
+ "bytes": 22855
16591
16372
  },
16592
- "testeranto/bundles/web/core/chunk-BADF3AZF.mjs": {
16373
+ "testeranto/bundles/web/core/chunk-A3JB5SVD.mjs": {
16593
16374
  "imports": [
16594
16375
  {
16595
- "path": "testeranto/bundles/web/core/chunk-FNXFUNA7.mjs",
16596
- "kind": "import-statement"
16597
- },
16598
- {
16599
- "path": "testeranto/bundles/web/core/chunk-QWII7WIM.mjs",
16600
- "kind": "import-statement"
16601
- },
16602
- {
16603
- "path": "testeranto/bundles/web/core/chunk-BXV27S2S.mjs",
16376
+ "path": "testeranto/bundles/web/core/chunk-63ZYWIC2.mjs",
16604
16377
  "kind": "import-statement"
16605
16378
  },
16606
16379
  {
16607
- "path": "testeranto/bundles/web/core/chunk-LU364HVS.mjs",
16380
+ "path": "testeranto/bundles/web/core/chunk-PV6EA47E.mjs",
16608
16381
  "kind": "import-statement"
16609
16382
  }
16610
16383
  ],
16611
16384
  "exports": [
16385
+ "Alert_default",
16386
+ "Badge_default",
16387
+ "Button_default",
16388
+ "Card_default",
16389
+ "Col_default",
16390
+ "Container_default",
16391
+ "ListGroup_default",
16392
+ "Modal_default",
16612
16393
  "NavBar",
16613
- "TestStatusBadge"
16394
+ "Nav_default",
16395
+ "Row_default",
16396
+ "Tab_default",
16397
+ "Table_default",
16398
+ "TestStatusBadge",
16399
+ "ToastContainer_default",
16400
+ "Toast_default"
16614
16401
  ],
16615
16402
  "inputs": {
16616
- "src/components/pure/NavBar.tsx": {
16617
- "bytesInOutput": 2484
16403
+ "node_modules/classnames/index.js": {
16404
+ "bytesInOutput": 1801
16618
16405
  },
16619
- "src/components/TestStatusBadge.tsx": {
16620
- "bytesInOutput": 1070
16621
- }
16622
- },
16623
- "bytes": 3979
16624
- },
16625
- "testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.mjs": {
16626
- "imports": [
16627
- {
16628
- "path": "testeranto/bundles/web/core/chunk-EIYZKF2C.mjs",
16629
- "kind": "import-statement"
16406
+ "node_modules/invariant/browser.js": {
16407
+ "bytesInOutput": 1033
16630
16408
  },
16631
- {
16632
- "path": "testeranto/bundles/web/core/chunk-FNXFUNA7.mjs",
16633
- "kind": "import-statement"
16409
+ "node_modules/react/cjs/react-jsx-runtime.development.js": {
16410
+ "bytesInOutput": 35465
16634
16411
  },
16635
- {
16636
- "path": "testeranto/bundles/web/core/chunk-VAYOSMXI.mjs",
16637
- "kind": "import-statement"
16412
+ "node_modules/react/jsx-runtime.js": {
16413
+ "bytesInOutput": 310
16638
16414
  },
16639
- {
16640
- "path": "testeranto/bundles/web/core/chunk-BXV27S2S.mjs",
16641
- "kind": "import-statement"
16415
+ "node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js": {
16416
+ "bytesInOutput": 7600
16642
16417
  },
16643
- {
16644
- "path": "testeranto/bundles/web/core/chunk-LU364HVS.mjs",
16645
- "kind": "import-statement"
16646
- }
16647
- ],
16648
- "exports": [
16649
- "default"
16650
- ],
16651
- "entryPoint": "src/components/pure/ModalContent.test/index.tsx",
16652
- "cssBundle": "testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css",
16653
- "inputs": {
16654
- "src/components/pure/ModalContent.test/index.tsx": {
16655
- "bytesInOutput": 312
16418
+ "node_modules/prop-types/node_modules/react-is/index.js": {
16419
+ "bytesInOutput": 319
16656
16420
  },
16657
- "src/components/pure/ModalContent.test/implementation.tsx": {
16658
- "bytesInOutput": 905
16421
+ "node_modules/object-assign/index.js": {
16422
+ "bytesInOutput": 2185
16659
16423
  },
16660
- "src/components/pure/ModalContent.test/specification.ts": {
16661
- "bytesInOutput": 528
16662
- }
16663
- },
16664
- "bytes": 2368
16665
- },
16666
- "testeranto/bundles/web/core/src/lib/BaseSuite.test/web.test.mjs": {
16667
- "imports": [
16668
- {
16669
- "path": "testeranto/bundles/web/core/chunk-LU364HVS.mjs",
16670
- "kind": "import-statement"
16671
- }
16672
- ],
16673
- "exports": [
16674
- "default"
16675
- ],
16676
- "entryPoint": "src/lib/BaseSuite.test/web.test.ts",
16677
- "inputs": {
16678
- "src/lib/BaseSuite.test/web.test.ts": {
16679
- "bytesInOutput": 148
16424
+ "node_modules/prop-types/lib/ReactPropTypesSecret.js": {
16425
+ "bytesInOutput": 330
16680
16426
  },
16681
- "src/lib/BaseSuite.test/test.ts": {
16682
- "bytesInOutput": 7954
16427
+ "node_modules/prop-types/lib/has.js": {
16428
+ "bytesInOutput": 230
16683
16429
  },
16684
- "src/lib/BaseSuite.test/mock.ts": {
16685
- "bytesInOutput": 2011
16686
- }
16687
- },
16688
- "bytes": 10496
16689
- },
16690
- "testeranto/bundles/web/core/src/lib/baseBuilder.test/baseBuilder.test.web.mjs": {
16691
- "imports": [
16692
- {
16693
- "path": "testeranto/bundles/web/core/chunk-LU364HVS.mjs",
16694
- "kind": "import-statement"
16695
- }
16696
- ],
16697
- "exports": [
16698
- "default"
16699
- ],
16700
- "entryPoint": "src/lib/baseBuilder.test/baseBuilder.test.web.ts",
16701
- "inputs": {
16702
- "src/lib/baseBuilder.test/baseBuilder.test.web.ts": {
16703
- "bytesInOutput": 176
16430
+ "node_modules/prop-types/checkPropTypes.js": {
16431
+ "bytesInOutput": 2703
16704
16432
  },
16705
- "src/lib/baseBuilder.test/baseBuilder.test.specification.ts": {
16706
- "bytesInOutput": 879
16433
+ "node_modules/prop-types/factoryWithTypeCheckers.js": {
16434
+ "bytesInOutput": 19600
16707
16435
  },
16708
- "src/lib/baseBuilder.test/baseBuilder.test.implementation.ts": {
16709
- "bytesInOutput": 3393
16436
+ "node_modules/prop-types/index.js": {
16437
+ "bytesInOutput": 441
16710
16438
  },
16711
- "src/lib/baseBuilder.test/baseBuilder.test.mock.ts": {
16712
- "bytesInOutput": 1180
16713
- },
16714
- "src/lib/baseBuilder.test/baseBuilder.test.adapter.ts": {
16715
- "bytesInOutput": 531
16716
- }
16717
- },
16718
- "bytes": 6744
16719
- },
16720
- "testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.mjs": {
16721
- "imports": [
16722
- {
16723
- "path": "testeranto/bundles/web/core/chunk-EIYZKF2C.mjs",
16724
- "kind": "import-statement"
16725
- },
16726
- {
16727
- "path": "testeranto/bundles/web/core/chunk-FNXFUNA7.mjs",
16728
- "kind": "import-statement"
16729
- },
16730
- {
16731
- "path": "testeranto/bundles/web/core/chunk-VAYOSMXI.mjs",
16732
- "kind": "import-statement"
16733
- },
16734
- {
16735
- "path": "testeranto/bundles/web/core/chunk-BXV27S2S.mjs",
16736
- "kind": "import-statement"
16737
- },
16738
- {
16739
- "path": "testeranto/bundles/web/core/chunk-LU364HVS.mjs",
16740
- "kind": "import-statement"
16741
- }
16742
- ],
16743
- "exports": [
16744
- "default"
16745
- ],
16746
- "entryPoint": "src/components/pure/AppFrame.test/index.tsx",
16747
- "cssBundle": "testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.css",
16748
- "inputs": {
16749
- "src/components/pure/AppFrame.test/index.tsx": {
16750
- "bytesInOutput": 414
16751
- },
16752
- "src/components/pure/AppFrame.test/implementation.tsx": {
16753
- "bytesInOutput": 2107
16754
- },
16755
- "src/components/pure/AppFrame.test/specification.ts": {
16756
- "bytesInOutput": 815
16757
- },
16758
- "src/components/pure/AppFrame.tsx": {
16759
- "bytesInOutput": 965
16760
- },
16761
- "src/components/pure/SettingsButton.tsx": {
16762
- "bytesInOutput": 2144
16763
- },
16764
- "src/components/SunriseAnimation.tsx": {
16765
- "bytesInOutput": 10363
16766
- }
16767
- },
16768
- "bytes": 17675
16769
- },
16770
- "testeranto/bundles/web/core/chunk-EIYZKF2C.mjs": {
16771
- "imports": [
16772
- {
16773
- "path": "testeranto/bundles/web/core/chunk-FNXFUNA7.mjs",
16774
- "kind": "import-statement"
16775
- },
16776
- {
16777
- "path": "testeranto/bundles/web/core/chunk-BXV27S2S.mjs",
16778
- "kind": "import-statement"
16779
- },
16780
- {
16781
- "path": "testeranto/bundles/web/core/chunk-LU364HVS.mjs",
16782
- "kind": "import-statement"
16783
- }
16784
- ],
16785
- "exports": [
16786
- "ModalContent"
16787
- ],
16788
- "inputs": {
16789
- "src/components/pure/ModalContent.tsx": {
16790
- "bytesInOutput": 5502
16791
- },
16792
- "src/components/pure/ThemeCard.tsx": {
16793
- "bytesInOutput": 821
16794
- }
16795
- },
16796
- "bytes": 6680
16797
- },
16798
- "testeranto/bundles/web/core/chunk-FNXFUNA7.mjs": {
16799
- "imports": [
16800
- {
16801
- "path": "testeranto/bundles/web/core/chunk-BXV27S2S.mjs",
16802
- "kind": "import-statement"
16803
- },
16804
- {
16805
- "path": "testeranto/bundles/web/core/chunk-LU364HVS.mjs",
16806
- "kind": "import-statement"
16807
- }
16808
- ],
16809
- "exports": [
16810
- "Alert_default",
16811
- "Badge_default",
16812
- "Button_default",
16813
- "Card_default",
16814
- "Col_default",
16815
- "Container_default",
16816
- "ListGroup_default",
16817
- "Modal_default",
16818
- "Nav_default",
16819
- "Navbar_default",
16820
- "Row_default",
16821
- "Tab_default",
16822
- "Table_default",
16823
- "require_react_dom"
16824
- ],
16825
- "inputs": {
16826
- "node_modules/classnames/index.js": {
16827
- "bytesInOutput": 1801
16828
- },
16829
- "node_modules/invariant/browser.js": {
16830
- "bytesInOutput": 1033
16831
- },
16832
- "node_modules/react/cjs/react-jsx-runtime.development.js": {
16833
- "bytesInOutput": 35465
16834
- },
16835
- "node_modules/react/jsx-runtime.js": {
16836
- "bytesInOutput": 310
16837
- },
16838
- "node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js": {
16839
- "bytesInOutput": 7600
16840
- },
16841
- "node_modules/prop-types/node_modules/react-is/index.js": {
16842
- "bytesInOutput": 319
16843
- },
16844
- "node_modules/object-assign/index.js": {
16845
- "bytesInOutput": 2185
16846
- },
16847
- "node_modules/prop-types/lib/ReactPropTypesSecret.js": {
16848
- "bytesInOutput": 330
16849
- },
16850
- "node_modules/prop-types/lib/has.js": {
16851
- "bytesInOutput": 230
16852
- },
16853
- "node_modules/prop-types/checkPropTypes.js": {
16854
- "bytesInOutput": 2703
16855
- },
16856
- "node_modules/prop-types/factoryWithTypeCheckers.js": {
16857
- "bytesInOutput": 19600
16858
- },
16859
- "node_modules/prop-types/index.js": {
16860
- "bytesInOutput": 441
16861
- },
16862
- "node_modules/scheduler/cjs/scheduler.development.js": {
16863
- "bytesInOutput": 16956
16864
- },
16865
- "node_modules/scheduler/index.js": {
16866
- "bytesInOutput": 298
16867
- },
16868
- "node_modules/react-dom/cjs/react-dom.development.js": {
16869
- "bytesInOutput": 906674
16870
- },
16871
- "node_modules/react-dom/index.js": {
16872
- "bytesInOutput": 316
16873
- },
16874
- "node_modules/warning/warning.js": {
16875
- "bytesInOutput": 1395
16439
+ "node_modules/warning/warning.js": {
16440
+ "bytesInOutput": 1395
16876
16441
  },
16877
16442
  "src/App.scss": {
16878
16443
  "bytesInOutput": 0
@@ -17270,6 +16835,30 @@
17270
16835
  "node_modules/react-bootstrap/esm/Table.js": {
17271
16836
  "bytesInOutput": 1397
17272
16837
  },
16838
+ "node_modules/react-bootstrap/esm/Toast.js": {
16839
+ "bytesInOutput": 2246
16840
+ },
16841
+ "node_modules/@restart/hooks/esm/useTimeout.js": {
16842
+ "bytesInOutput": 996
16843
+ },
16844
+ "node_modules/@restart/hooks/esm/useMounted.js": {
16845
+ "bytesInOutput": 407
16846
+ },
16847
+ "node_modules/react-bootstrap/esm/ToastFade.js": {
16848
+ "bytesInOutput": 480
16849
+ },
16850
+ "node_modules/react-bootstrap/esm/ToastHeader.js": {
16851
+ "bytesInOutput": 1245
16852
+ },
16853
+ "node_modules/react-bootstrap/esm/ToastContext.js": {
16854
+ "bytesInOutput": 223
16855
+ },
16856
+ "node_modules/react-bootstrap/esm/ToastBody.js": {
16857
+ "bytesInOutput": 644
16858
+ },
16859
+ "node_modules/react-bootstrap/esm/ToastContainer.js": {
16860
+ "bytesInOutput": 1389
16861
+ },
17273
16862
  "node_modules/react-bootstrap/esm/index.js": {
17274
16863
  "bytesInOutput": 47
17275
16864
  },
@@ -17320,26 +16909,28 @@
17320
16909
  },
17321
16910
  "node_modules/react-bootstrap/esm/NavbarText.js": {
17322
16911
  "bytesInOutput": 651
16912
+ },
16913
+ "src/components/pure/NavBar.tsx": {
16914
+ "bytesInOutput": 2919
16915
+ },
16916
+ "src/components/TestStatusBadge.tsx": {
16917
+ "bytesInOutput": 1074
17323
16918
  }
17324
16919
  },
17325
- "bytes": 1158535
16920
+ "bytes": 245397
17326
16921
  },
17327
16922
  "testeranto/bundles/web/core/src/components/pure/FeaturesReporterView.test/index.mjs": {
17328
16923
  "imports": [
17329
16924
  {
17330
- "path": "testeranto/bundles/web/core/chunk-QWII7WIM.mjs",
17331
- "kind": "import-statement"
17332
- },
17333
- {
17334
- "path": "testeranto/bundles/web/core/chunk-VAYOSMXI.mjs",
16925
+ "path": "testeranto/bundles/web/core/chunk-L6N2I5MB.mjs",
17335
16926
  "kind": "import-statement"
17336
16927
  },
17337
16928
  {
17338
- "path": "testeranto/bundles/web/core/chunk-BXV27S2S.mjs",
16929
+ "path": "testeranto/bundles/web/core/chunk-63ZYWIC2.mjs",
17339
16930
  "kind": "import-statement"
17340
16931
  },
17341
16932
  {
17342
- "path": "testeranto/bundles/web/core/chunk-LU364HVS.mjs",
16933
+ "path": "testeranto/bundles/web/core/chunk-PV6EA47E.mjs",
17343
16934
  "kind": "import-statement"
17344
16935
  }
17345
16936
  ],
@@ -17354,559 +16945,228 @@
17354
16945
  "src/components/pure/FeaturesReporterView.test/implementation.tsx": {
17355
16946
  "bytesInOutput": 2370
17356
16947
  },
17357
- "src/components/pure/FeaturesReporterView.test/specification.ts": {
17358
- "bytesInOutput": 914
17359
- },
17360
- "src/components/pure/FeaturesReporterView.tsx": {
17361
- "bytesInOutput": 1093
17362
- }
17363
- },
17364
- "bytes": 5467
17365
- },
17366
- "testeranto/bundles/web/core/chunk-QWII7WIM.mjs": {
17367
- "imports": [
17368
- {
17369
- "path": "testeranto/bundles/web/core/chunk-BXV27S2S.mjs",
17370
- "kind": "import-statement"
17371
- },
17372
- {
17373
- "path": "testeranto/bundles/web/core/chunk-LU364HVS.mjs",
17374
- "kind": "import-statement"
17375
- }
17376
- ],
17377
- "exports": [
17378
- "Link",
17379
- "MemoryRouter"
17380
- ],
17381
- "inputs": {
17382
- "node_modules/react-router/dist/development/chunk-ZYFC6VSF.mjs": {
17383
- "bytesInOutput": 74057
17384
- },
17385
- "node_modules/react-router/dist/development/index.mjs": {
17386
- "bytesInOutput": 61
17387
- }
17388
- },
17389
- "bytes": 75043
17390
- },
17391
- "testeranto/bundles/web/core/chunk-VAYOSMXI.mjs": {
17392
- "imports": [
17393
- {
17394
- "path": "testeranto/bundles/web/core/chunk-BXV27S2S.mjs",
17395
- "kind": "import-statement"
17396
- },
17397
- {
17398
- "path": "testeranto/bundles/web/core/chunk-LU364HVS.mjs",
17399
- "kind": "import-statement"
17400
- }
17401
- ],
17402
- "exports": [
17403
- "web_default"
17404
- ],
17405
- "inputs": {
17406
- "../testeranto-react/node_modules/scheduler/cjs/scheduler.development.js": {
17407
- "bytesInOutput": 16969
17408
- },
17409
- "../testeranto-react/node_modules/scheduler/index.js": {
17410
- "bytesInOutput": 318
17411
- },
17412
- "../testeranto-react/node_modules/react-dom/cjs/react-dom.development.js": {
17413
- "bytesInOutput": 906664
17414
- },
17415
- "../testeranto-react/node_modules/react-dom/index.js": {
17416
- "bytesInOutput": 336
17417
- },
17418
- "../testeranto-react/node_modules/react-dom/client.js": {
17419
- "bytesInOutput": 857
17420
- },
17421
- "../testeranto-react/src/react-dom/component/web.ts": {
17422
- "bytesInOutput": 270
17423
- },
17424
- "../testeranto-react/src/react-dom/component/dynamic.ts": {
17425
- "bytesInOutput": 2409
17426
- }
17427
- },
17428
- "bytes": 929596
17429
- },
17430
- "testeranto/bundles/web/core/chunk-BXV27S2S.mjs": {
17431
- "imports": [
17432
- {
17433
- "path": "testeranto/bundles/web/core/chunk-LU364HVS.mjs",
17434
- "kind": "import-statement"
17435
- }
17436
- ],
17437
- "exports": [
17438
- "assert",
17439
- "require_react"
17440
- ],
17441
- "inputs": {
17442
- "node_modules/react/cjs/react.development.js": {
17443
- "bytesInOutput": 77246
17444
- },
17445
- "node_modules/react/index.js": {
17446
- "bytesInOutput": 286
17447
- },
17448
- "node_modules/chai/chai.js": {
17449
- "bytesInOutput": 134531
17450
- }
17451
- },
17452
- "bytes": 220070
17453
- },
17454
- "testeranto/bundles/web/core/chunk-LU364HVS.mjs": {
17455
- "imports": [],
17456
- "exports": [
17457
- "BaseBuilder",
17458
- "BaseGiven",
17459
- "BaseSuite",
17460
- "BaseThen",
17461
- "BaseWhen",
17462
- "Buffer",
17463
- "Web_default",
17464
- "__commonJS",
17465
- "__toESM",
17466
- "init_buffer",
17467
- "init_dirname",
17468
- "init_process",
17469
- "process_exports"
17470
- ],
17471
- "inputs": {
17472
- "node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js": {
17473
- "bytesInOutput": 108
17474
- },
17475
- "node_modules/@jspm/core/nodelibs/browser/chunk-DtuTasat.js": {
17476
- "bytesInOutput": 60044
17477
- },
17478
- "node_modules/@jspm/core/nodelibs/browser/buffer.js": {
17479
- "bytesInOutput": 493
17480
- },
17481
- "node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js": {
17482
- "bytesInOutput": 124
17483
- },
17484
- "node_modules/@jspm/core/nodelibs/browser/process.js": {
17485
- "bytesInOutput": 9699
17486
- },
17487
- "node_modules/esbuild-plugin-polyfill-node/polyfills/process.js": {
17488
- "bytesInOutput": 127
17489
- },
17490
- "src/lib/BaseSuite.ts": {
17491
- "bytesInOutput": 2420
17492
- },
17493
- "src/lib/pmProxy.ts": {
17494
- "bytesInOutput": 5643
17495
- },
17496
- "src/Web.ts": {
17497
- "bytesInOutput": 840
17498
- },
17499
- "src/PM/web.ts": {
17500
- "bytesInOutput": 3073
17501
- },
17502
- "src/PM/index.ts": {
17503
- "bytesInOutput": 69
17504
- },
17505
- "src/lib/core.ts": {
17506
- "bytesInOutput": 1876
17507
- },
17508
- "src/lib/index.ts": {
17509
- "bytesInOutput": 705
17510
- },
17511
- "src/lib/abstractBase.ts": {
17512
- "bytesInOutput": 5073
17513
- },
17514
- "src/lib/classBuilder.ts": {
17515
- "bytesInOutput": 1901
17516
- },
17517
- "src/lib/basebuilder.ts": {
17518
- "bytesInOutput": 2708
17519
- }
17520
- },
17521
- "bytes": 97590
17522
- },
17523
- "testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf": {
17524
- "imports": [],
17525
- "exports": [],
17526
- "inputs": {
17527
- "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Thin.ttf": {
17528
- "bytesInOutput": 2819076
17529
- }
17530
- },
17531
- "bytes": 2819076
17532
- },
17533
- "testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf": {
17534
- "imports": [],
17535
- "exports": [],
17536
- "inputs": {
17537
- "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Light.ttf": {
17538
- "bytesInOutput": 3193048
17539
- }
17540
- },
17541
- "bytes": 3193048
17542
- },
17543
- "testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf": {
17544
- "imports": [],
17545
- "exports": [],
17546
- "inputs": {
17547
- "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Regular.ttf": {
17548
- "bytesInOutput": 3284152
17549
- }
17550
- },
17551
- "bytes": 3284152
17552
- },
17553
- "testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf": {
17554
- "imports": [],
17555
- "exports": [],
17556
- "inputs": {
17557
- "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Medium.ttf": {
17558
- "bytesInOutput": 3325496
17559
- }
17560
- },
17561
- "bytes": 3325496
17562
- },
17563
- "testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf": {
17564
- "imports": [],
17565
- "exports": [],
17566
- "inputs": {
17567
- "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Bold.ttf": {
17568
- "bytesInOutput": 3432832
17569
- }
17570
- },
17571
- "bytes": 3432832
17572
- },
17573
- "testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf": {
17574
- "imports": [],
17575
- "exports": [],
17576
- "inputs": {
17577
- "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-ExtraBold.ttf": {
17578
- "bytesInOutput": 3515332
17579
- }
17580
- },
17581
- "bytes": 3515332
17582
- },
17583
- "testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf": {
17584
- "imports": [],
17585
- "exports": [],
17586
- "inputs": {
17587
- "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Black.ttf": {
17588
- "bytesInOutput": 3521968
17589
- }
17590
- },
17591
- "bytes": 3521968
17592
- },
17593
- "testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.css": {
17594
- "imports": [
17595
- {
17596
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
17597
- "kind": "url-token",
17598
- "external": true
17599
- },
17600
- {
17601
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
17602
- "kind": "url-token",
17603
- "external": true
17604
- },
17605
- {
17606
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e",
17607
- "kind": "url-token",
17608
- "external": true
17609
- },
17610
- {
17611
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e",
17612
- "kind": "url-token",
17613
- "external": true
17614
- },
17615
- {
17616
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e",
17617
- "kind": "url-token",
17618
- "external": true
17619
- },
17620
- {
17621
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e",
17622
- "kind": "url-token",
17623
- "external": true
17624
- },
17625
- {
17626
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e",
17627
- "kind": "url-token",
17628
- "external": true
17629
- },
17630
- {
17631
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e",
17632
- "kind": "url-token",
17633
- "external": true
17634
- },
17635
- {
17636
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e",
17637
- "kind": "url-token",
17638
- "external": true
17639
- },
17640
- {
17641
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e",
17642
- "kind": "url-token",
17643
- "external": true
17644
- },
17645
- {
17646
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e",
17647
- "kind": "url-token",
17648
- "external": true
17649
- },
17650
- {
17651
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e",
17652
- "kind": "url-token",
17653
- "external": true
17654
- },
17655
- {
17656
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e",
17657
- "kind": "url-token",
17658
- "external": true
17659
- },
17660
- {
17661
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e",
17662
- "kind": "url-token",
17663
- "external": true
17664
- },
17665
- {
17666
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e",
17667
- "kind": "url-token",
17668
- "external": true
17669
- },
17670
- {
17671
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e",
17672
- "kind": "url-token",
17673
- "external": true
17674
- },
17675
- {
17676
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
17677
- "kind": "url-token",
17678
- "external": true
17679
- },
17680
- {
17681
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgb%285.2, 44, 101.2%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
17682
- "kind": "url-token",
17683
- "external": true
17684
- },
17685
- {
17686
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e",
17687
- "kind": "url-token",
17688
- "external": true
17689
- },
17690
- {
17691
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e",
17692
- "kind": "url-token",
17693
- "external": true
17694
- },
17695
- {
17696
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e",
17697
- "kind": "url-token",
17698
- "external": true
17699
- },
17700
- {
17701
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e",
17702
- "kind": "url-token",
17703
- "external": true
17704
- },
17705
- {
17706
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e",
17707
- "kind": "url-token",
17708
- "external": true
17709
- },
17710
- {
17711
- "path": "testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf",
17712
- "kind": "url-token"
17713
- },
17714
- {
17715
- "path": "testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf",
17716
- "kind": "url-token"
17717
- },
17718
- {
17719
- "path": "testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf",
17720
- "kind": "url-token"
17721
- },
17722
- {
17723
- "path": "testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf",
17724
- "kind": "url-token"
17725
- },
17726
- {
17727
- "path": "testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf",
17728
- "kind": "url-token"
17729
- },
17730
- {
17731
- "path": "testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf",
17732
- "kind": "url-token"
17733
- },
17734
- {
17735
- "path": "testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf",
17736
- "kind": "url-token"
17737
- },
17738
- {
17739
- "path": "data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100\" height=\"100\" viewBox=\"0 0 100 100\"><circle cx=\"10\" cy=\"10\" r=\"0.5\" fill=\"white\"/><circle cx=\"30\" cy=\"25\" r=\"0.5\" fill=\"white\"/><circle cx=\"70\" cy=\"15\" r=\"0.5\" fill=\"white\"/><circle cx=\"90\" cy=\"40\" r=\"0.5\" fill=\"white\"/><circle cx=\"20\" cy=\"60\" r=\"0.5\" fill=\"white\"/><circle cx=\"50\" cy=\"70\" r=\"0.5\" fill=\"white\"/><circle cx=\"80\" cy=\"85\" r=\"0.5\" fill=\"white\"/></svg>",
17740
- "kind": "url-token",
17741
- "external": true
17742
- }
17743
- ],
17744
- "inputs": {
17745
- "src/App.scss": {
17746
- "bytesInOutput": 290859
17747
- }
17748
- },
17749
- "bytes": 291075
17750
- },
17751
- "testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css": {
17752
- "imports": [
17753
- {
17754
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
17755
- "kind": "url-token",
17756
- "external": true
17757
- },
17758
- {
17759
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
17760
- "kind": "url-token",
17761
- "external": true
17762
- },
17763
- {
17764
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e",
17765
- "kind": "url-token",
17766
- "external": true
17767
- },
17768
- {
17769
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e",
17770
- "kind": "url-token",
17771
- "external": true
16948
+ "src/components/pure/FeaturesReporterView.test/specification.ts": {
16949
+ "bytesInOutput": 914
17772
16950
  },
16951
+ "src/components/pure/FeaturesReporterView.tsx": {
16952
+ "bytesInOutput": 1093
16953
+ }
16954
+ },
16955
+ "bytes": 5418
16956
+ },
16957
+ "testeranto/bundles/web/core/chunk-L6N2I5MB.mjs": {
16958
+ "imports": [
17773
16959
  {
17774
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e",
17775
- "kind": "url-token",
17776
- "external": true
16960
+ "path": "testeranto/bundles/web/core/chunk-63ZYWIC2.mjs",
16961
+ "kind": "import-statement"
17777
16962
  },
17778
16963
  {
17779
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e",
17780
- "kind": "url-token",
17781
- "external": true
16964
+ "path": "testeranto/bundles/web/core/chunk-PV6EA47E.mjs",
16965
+ "kind": "import-statement"
16966
+ }
16967
+ ],
16968
+ "exports": [
16969
+ "web_default"
16970
+ ],
16971
+ "inputs": {
16972
+ "node_modules/testeranto-react/src/react-dom/component/web.ts": {
16973
+ "bytesInOutput": 270
17782
16974
  },
16975
+ "node_modules/testeranto-react/src/react-dom/component/dynamic.ts": {
16976
+ "bytesInOutput": 2409
16977
+ }
16978
+ },
16979
+ "bytes": 3091
16980
+ },
16981
+ "testeranto/bundles/web/core/chunk-63ZYWIC2.mjs": {
16982
+ "imports": [
17783
16983
  {
17784
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e",
17785
- "kind": "url-token",
17786
- "external": true
16984
+ "path": "testeranto/bundles/web/core/chunk-PV6EA47E.mjs",
16985
+ "kind": "import-statement"
16986
+ }
16987
+ ],
16988
+ "exports": [
16989
+ "Link",
16990
+ "MemoryRouter",
16991
+ "assert",
16992
+ "require_client",
16993
+ "require_react",
16994
+ "require_react_dom",
16995
+ "useLocation",
16996
+ "useNavigate"
16997
+ ],
16998
+ "inputs": {
16999
+ "node_modules/react/cjs/react.development.js": {
17000
+ "bytesInOutput": 77293
17787
17001
  },
17788
- {
17789
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e",
17790
- "kind": "url-token",
17791
- "external": true
17002
+ "node_modules/react/index.js": {
17003
+ "bytesInOutput": 286
17792
17004
  },
17793
- {
17794
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e",
17795
- "kind": "url-token",
17796
- "external": true
17005
+ "node_modules/scheduler/cjs/scheduler.development.js": {
17006
+ "bytesInOutput": 16949
17797
17007
  },
17798
- {
17799
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e",
17800
- "kind": "url-token",
17801
- "external": true
17008
+ "node_modules/scheduler/index.js": {
17009
+ "bytesInOutput": 298
17802
17010
  },
17803
- {
17804
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e",
17805
- "kind": "url-token",
17806
- "external": true
17011
+ "node_modules/react-dom/cjs/react-dom.development.js": {
17012
+ "bytesInOutput": 906948
17807
17013
  },
17808
- {
17809
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e",
17810
- "kind": "url-token",
17811
- "external": true
17014
+ "node_modules/react-dom/index.js": {
17015
+ "bytesInOutput": 316
17812
17016
  },
17813
- {
17814
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e",
17815
- "kind": "url-token",
17816
- "external": true
17017
+ "node_modules/react-dom/client.js": {
17018
+ "bytesInOutput": 837
17817
17019
  },
17818
- {
17819
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e",
17820
- "kind": "url-token",
17821
- "external": true
17020
+ "node_modules/react-router/dist/development/chunk-PVWAREVJ.mjs": {
17021
+ "bytesInOutput": 74709
17822
17022
  },
17823
- {
17824
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e",
17825
- "kind": "url-token",
17826
- "external": true
17023
+ "node_modules/react-router/dist/development/index.mjs": {
17024
+ "bytesInOutput": 61
17827
17025
  },
17828
- {
17829
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e",
17830
- "kind": "url-token",
17831
- "external": true
17026
+ "node_modules/chai/index.js": {
17027
+ "bytesInOutput": 133877
17028
+ }
17029
+ },
17030
+ "bytes": 1221627
17031
+ },
17032
+ "testeranto/bundles/web/core/chunk-PV6EA47E.mjs": {
17033
+ "imports": [],
17034
+ "exports": [
17035
+ "BaseGiven",
17036
+ "BaseSuite",
17037
+ "BaseThen",
17038
+ "BaseWhen",
17039
+ "Buffer",
17040
+ "Web_default",
17041
+ "__commonJS",
17042
+ "__toESM",
17043
+ "init_buffer",
17044
+ "init_dirname",
17045
+ "init_process"
17046
+ ],
17047
+ "inputs": {
17048
+ "node_modules/esbuild-plugin-polyfill-node/polyfills/__dirname.js": {
17049
+ "bytesInOutput": 108
17832
17050
  },
17833
- {
17834
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
17835
- "kind": "url-token",
17836
- "external": true
17051
+ "node_modules/@jspm/core/nodelibs/browser/chunk-DtuTasat.js": {
17052
+ "bytesInOutput": 60044
17837
17053
  },
17838
- {
17839
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgb%285.2, 44, 101.2%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
17840
- "kind": "url-token",
17841
- "external": true
17054
+ "node_modules/@jspm/core/nodelibs/browser/buffer.js": {
17055
+ "bytesInOutput": 493
17842
17056
  },
17843
- {
17844
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e",
17845
- "kind": "url-token",
17846
- "external": true
17057
+ "node_modules/esbuild-plugin-polyfill-node/polyfills/buffer.js": {
17058
+ "bytesInOutput": 124
17847
17059
  },
17848
- {
17849
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e",
17850
- "kind": "url-token",
17851
- "external": true
17060
+ "node_modules/@jspm/core/nodelibs/browser/process.js": {
17061
+ "bytesInOutput": 1767
17852
17062
  },
17853
- {
17854
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e",
17855
- "kind": "url-token",
17856
- "external": true
17063
+ "node_modules/esbuild-plugin-polyfill-node/polyfills/process.js": {
17064
+ "bytesInOutput": 127
17857
17065
  },
17858
- {
17859
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e",
17860
- "kind": "url-token",
17861
- "external": true
17066
+ "src/lib/BaseSuite.ts": {
17067
+ "bytesInOutput": 2498
17862
17068
  },
17863
- {
17864
- "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e",
17865
- "kind": "url-token",
17866
- "external": true
17069
+ "src/lib/pmProxy.ts": {
17070
+ "bytesInOutput": 6512
17867
17071
  },
17868
- {
17869
- "path": "testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf",
17870
- "kind": "url-token"
17072
+ "src/Web.ts": {
17073
+ "bytesInOutput": 837
17871
17074
  },
17872
- {
17873
- "path": "testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf",
17874
- "kind": "url-token"
17075
+ "src/PM/web.ts": {
17076
+ "bytesInOutput": 3059
17875
17077
  },
17876
- {
17877
- "path": "testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf",
17878
- "kind": "url-token"
17078
+ "src/PM/index.ts": {
17079
+ "bytesInOutput": 69
17879
17080
  },
17880
- {
17881
- "path": "testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf",
17882
- "kind": "url-token"
17081
+ "src/lib/Tiposkripto.ts": {
17082
+ "bytesInOutput": 5346
17883
17083
  },
17884
- {
17885
- "path": "testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf",
17886
- "kind": "url-token"
17084
+ "src/lib/index.ts": {
17085
+ "bytesInOutput": 721
17887
17086
  },
17888
- {
17889
- "path": "testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf",
17890
- "kind": "url-token"
17087
+ "src/lib/BaseGiven.ts": {
17088
+ "bytesInOutput": 2958
17891
17089
  },
17892
- {
17893
- "path": "testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf",
17894
- "kind": "url-token"
17090
+ "src/lib/BaseWhen.ts": {
17091
+ "bytesInOutput": 1174
17895
17092
  },
17896
- {
17897
- "path": "data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100\" height=\"100\" viewBox=\"0 0 100 100\"><circle cx=\"10\" cy=\"10\" r=\"0.5\" fill=\"white\"/><circle cx=\"30\" cy=\"25\" r=\"0.5\" fill=\"white\"/><circle cx=\"70\" cy=\"15\" r=\"0.5\" fill=\"white\"/><circle cx=\"90\" cy=\"40\" r=\"0.5\" fill=\"white\"/><circle cx=\"20\" cy=\"60\" r=\"0.5\" fill=\"white\"/><circle cx=\"50\" cy=\"70\" r=\"0.5\" fill=\"white\"/><circle cx=\"80\" cy=\"85\" r=\"0.5\" fill=\"white\"/></svg>",
17898
- "kind": "url-token",
17899
- "external": true
17093
+ "src/lib/BaseThen.ts": {
17094
+ "bytesInOutput": 1628
17900
17095
  }
17901
- ],
17096
+ },
17097
+ "bytes": 89966
17098
+ },
17099
+ "testeranto/bundles/web/core/MPLUSRounded1c-Thin-YWDNVG6M.ttf": {
17100
+ "imports": [],
17101
+ "exports": [],
17902
17102
  "inputs": {
17903
- "src/App.scss": {
17904
- "bytesInOutput": 290859
17103
+ "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Thin.ttf": {
17104
+ "bytesInOutput": 2819076
17105
+ }
17106
+ },
17107
+ "bytes": 2819076
17108
+ },
17109
+ "testeranto/bundles/web/core/MPLUSRounded1c-Light-WKN65Y2C.ttf": {
17110
+ "imports": [],
17111
+ "exports": [],
17112
+ "inputs": {
17113
+ "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Light.ttf": {
17114
+ "bytesInOutput": 3193048
17115
+ }
17116
+ },
17117
+ "bytes": 3193048
17118
+ },
17119
+ "testeranto/bundles/web/core/MPLUSRounded1c-Regular-DT6EKZ3S.ttf": {
17120
+ "imports": [],
17121
+ "exports": [],
17122
+ "inputs": {
17123
+ "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Regular.ttf": {
17124
+ "bytesInOutput": 3284152
17125
+ }
17126
+ },
17127
+ "bytes": 3284152
17128
+ },
17129
+ "testeranto/bundles/web/core/MPLUSRounded1c-Medium-ZC4DWL7C.ttf": {
17130
+ "imports": [],
17131
+ "exports": [],
17132
+ "inputs": {
17133
+ "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Medium.ttf": {
17134
+ "bytesInOutput": 3325496
17135
+ }
17136
+ },
17137
+ "bytes": 3325496
17138
+ },
17139
+ "testeranto/bundles/web/core/MPLUSRounded1c-Bold-R524Q5BH.ttf": {
17140
+ "imports": [],
17141
+ "exports": [],
17142
+ "inputs": {
17143
+ "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Bold.ttf": {
17144
+ "bytesInOutput": 3432832
17145
+ }
17146
+ },
17147
+ "bytes": 3432832
17148
+ },
17149
+ "testeranto/bundles/web/core/MPLUSRounded1c-ExtraBold-C6GRMYVT.ttf": {
17150
+ "imports": [],
17151
+ "exports": [],
17152
+ "inputs": {
17153
+ "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-ExtraBold.ttf": {
17154
+ "bytesInOutput": 3515332
17155
+ }
17156
+ },
17157
+ "bytes": 3515332
17158
+ },
17159
+ "testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf": {
17160
+ "imports": [],
17161
+ "exports": [],
17162
+ "inputs": {
17163
+ "fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Black.ttf": {
17164
+ "bytesInOutput": 3521968
17905
17165
  }
17906
17166
  },
17907
- "bytes": 291075
17167
+ "bytes": 3521968
17908
17168
  },
17909
- "testeranto/bundles/web/core/src/components/pure/ModalContent.test/index.css": {
17169
+ "testeranto/bundles/web/core/src/components/pure/TestPageView.test/index.css": {
17910
17170
  "imports": [
17911
17171
  {
17912
17172
  "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
@@ -18050,21 +17310,16 @@
18050
17310
  {
18051
17311
  "path": "testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf",
18052
17312
  "kind": "url-token"
18053
- },
18054
- {
18055
- "path": "data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100\" height=\"100\" viewBox=\"0 0 100 100\"><circle cx=\"10\" cy=\"10\" r=\"0.5\" fill=\"white\"/><circle cx=\"30\" cy=\"25\" r=\"0.5\" fill=\"white\"/><circle cx=\"70\" cy=\"15\" r=\"0.5\" fill=\"white\"/><circle cx=\"90\" cy=\"40\" r=\"0.5\" fill=\"white\"/><circle cx=\"20\" cy=\"60\" r=\"0.5\" fill=\"white\"/><circle cx=\"50\" cy=\"70\" r=\"0.5\" fill=\"white\"/><circle cx=\"80\" cy=\"85\" r=\"0.5\" fill=\"white\"/></svg>",
18056
- "kind": "url-token",
18057
- "external": true
18058
17313
  }
18059
17314
  ],
18060
17315
  "inputs": {
18061
17316
  "src/App.scss": {
18062
- "bytesInOutput": 290859
17317
+ "bytesInOutput": 280075
18063
17318
  }
18064
17319
  },
18065
- "bytes": 291075
17320
+ "bytes": 280291
18066
17321
  },
18067
- "testeranto/bundles/web/core/src/components/pure/AppFrame.test/index.css": {
17322
+ "testeranto/bundles/web/core/src/components/pure/ProjectPageView.test/index.css": {
18068
17323
  "imports": [
18069
17324
  {
18070
17325
  "path": "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e",
@@ -18208,19 +17463,14 @@
18208
17463
  {
18209
17464
  "path": "testeranto/bundles/web/core/MPLUSRounded1c-Black-O75GP5JI.ttf",
18210
17465
  "kind": "url-token"
18211
- },
18212
- {
18213
- "path": "data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100\" height=\"100\" viewBox=\"0 0 100 100\"><circle cx=\"10\" cy=\"10\" r=\"0.5\" fill=\"white\"/><circle cx=\"30\" cy=\"25\" r=\"0.5\" fill=\"white\"/><circle cx=\"70\" cy=\"15\" r=\"0.5\" fill=\"white\"/><circle cx=\"90\" cy=\"40\" r=\"0.5\" fill=\"white\"/><circle cx=\"20\" cy=\"60\" r=\"0.5\" fill=\"white\"/><circle cx=\"50\" cy=\"70\" r=\"0.5\" fill=\"white\"/><circle cx=\"80\" cy=\"85\" r=\"0.5\" fill=\"white\"/></svg>",
18214
- "kind": "url-token",
18215
- "external": true
18216
17466
  }
18217
17467
  ],
18218
17468
  "inputs": {
18219
17469
  "src/App.scss": {
18220
- "bytesInOutput": 290859
17470
+ "bytesInOutput": 280075
18221
17471
  }
18222
17472
  },
18223
- "bytes": 291075
17473
+ "bytes": 280291
18224
17474
  }
18225
17475
  }
18226
17476
  }