testeranto 0.172.0 → 0.177.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 (203) hide show
  1. package/README.md +2 -4
  2. package/dist/common/src/PM/base.js +5 -1
  3. package/dist/common/src/PM/main.js +57 -54
  4. package/dist/common/src/PM/node.js +4 -1
  5. package/dist/common/src/PM/pure.js +4 -1
  6. package/dist/common/src/PM/web.js +6 -3
  7. package/dist/common/src/Pure.js +0 -4
  8. package/dist/common/src/Pure.test.js +1 -1
  9. package/dist/common/src/ReportServer.js +2 -126
  10. package/dist/common/src/ReportServer.test.ts/index.js +78 -0
  11. package/dist/common/src/ReportServerLib.js +141 -0
  12. package/dist/common/src/components/pure/ProjectPageView.test/implementation.js +1 -1
  13. package/dist/common/src/esbuildConfigs/node.js +1 -3
  14. package/dist/common/src/lib/BaseSuite.js +13 -11
  15. package/dist/common/src/lib/abstractBase.js +39 -40
  16. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
  17. package/dist/common/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
  18. package/dist/common/src/lib/basebuilder.js +13 -2
  19. package/dist/common/src/lib/core.js +1 -0
  20. package/dist/common/src/lib/pmProxy.js +215 -201
  21. package/dist/common/src/lib/pmProxy.test/adapter.js +2 -2
  22. package/dist/common/src/lib/pmProxy.test/implementation.js +1 -1
  23. package/dist/common/testeranto.config.js +47 -32
  24. package/dist/common/tsconfig.common.tsbuildinfo +1 -1
  25. package/dist/module/src/PM/base.js +5 -1
  26. package/dist/module/src/PM/main.js +22 -19
  27. package/dist/module/src/PM/node.js +4 -1
  28. package/dist/module/src/PM/pure.js +4 -1
  29. package/dist/module/src/PM/web.js +6 -3
  30. package/dist/module/src/Pure.js +0 -4
  31. package/dist/module/src/Pure.test.js +1 -1
  32. package/dist/module/src/ReportServer.js +2 -123
  33. package/dist/module/src/ReportServer.test.ts/index.js +73 -0
  34. package/dist/module/src/ReportServerLib.js +134 -0
  35. package/dist/module/src/TestPage.js +29 -17
  36. package/dist/module/src/components/pure/ProjectPageView.test/implementation.js +1 -1
  37. package/dist/module/src/components/pure/TestPageView.js +29 -17
  38. package/dist/module/src/esbuildConfigs/node.js +1 -3
  39. package/dist/module/src/lib/BaseSuite.js +13 -11
  40. package/dist/module/src/lib/abstractBase.js +39 -40
  41. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.implementation.js +10 -9
  42. package/dist/module/src/lib/baseBuilder.test/baseBuilder.test.specification.js +7 -7
  43. package/dist/module/src/lib/basebuilder.js +13 -2
  44. package/dist/module/src/lib/core.js +1 -0
  45. package/dist/module/src/lib/pmProxy.js +215 -201
  46. package/dist/module/src/lib/pmProxy.test/adapter.js +2 -2
  47. package/dist/module/src/lib/pmProxy.test/implementation.js +1 -1
  48. package/dist/module/testeranto.config.js +47 -32
  49. package/dist/module/tsconfig.module.tsbuildinfo +1 -1
  50. package/dist/prebuild/App.js +3 -3
  51. package/dist/prebuild/ReportServer.mjs +21 -9
  52. package/dist/prebuild/build.mjs +1 -1
  53. package/dist/prebuild/run.mjs +27 -20
  54. package/dist/types/src/PM/base.d.ts +1 -1
  55. package/dist/types/src/PM/node.d.ts +1 -1
  56. package/dist/types/src/PM/pure.d.ts +1 -1
  57. package/dist/types/src/PM/web.d.ts +1 -1
  58. package/dist/types/src/ReportServer.test.ts/index.d.ts +29 -0
  59. package/dist/types/src/ReportServerLib.d.ts +1 -0
  60. package/dist/types/src/Types.d.ts +0 -1
  61. package/dist/types/src/components/pure/ProjectPageView.test/index.d.ts +2 -1
  62. package/dist/types/src/lib/BaseSuite.d.ts +2 -0
  63. package/dist/types/src/lib/abstractBase.d.ts +5 -7
  64. package/dist/types/src/lib/baseBuilder.test/baseBuilder.test.types.d.ts +7 -4
  65. package/dist/types/src/lib/pmProxy.d.ts +3 -3
  66. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  67. package/package.json +3 -3
  68. package/src/PM/base.ts +7 -5
  69. package/src/PM/main.ts +26 -21
  70. package/src/PM/node.ts +6 -1
  71. package/src/PM/pure.ts +6 -1
  72. package/src/PM/web.ts +7 -3
  73. package/src/Pure.test.ts +6 -6
  74. package/src/Pure.ts +0 -8
  75. package/src/ReportServer.test.ts/index.ts +194 -0
  76. package/src/ReportServer.ts +2 -132
  77. package/src/ReportServerLib.ts +147 -0
  78. package/src/TestPage.tsx +65 -5
  79. package/src/Types.ts +0 -1
  80. package/src/components/pure/ProjectPageView.test/implementation.tsx +1 -1
  81. package/src/components/pure/TestPageView.tsx +65 -5
  82. package/src/esbuildConfigs/node.ts +1 -1
  83. package/src/lib/BaseSuite.ts +16 -21
  84. package/src/lib/abstractBase.ts +59 -48
  85. package/src/lib/baseBuilder.test/baseBuilder.test.implementation.ts +22 -10
  86. package/src/lib/baseBuilder.test/baseBuilder.test.specification.ts +9 -9
  87. package/src/lib/baseBuilder.test/baseBuilder.test.types.ts +7 -4
  88. package/src/lib/basebuilder.ts +13 -4
  89. package/src/lib/core.ts +1 -0
  90. package/src/lib/pmProxy.test/adapter.ts +2 -2
  91. package/src/lib/pmProxy.test/implementation.ts +3 -3
  92. package/src/lib/pmProxy.test/types.ts +0 -2
  93. package/src/lib/pmProxy.ts +135 -80
  94. package/testeranto/App.js +3 -3
  95. package/testeranto/bundles/node/core/metafile.json +8 -0
  96. package/testeranto/bundles/pure/core/metafile.json +8 -0
  97. package/testeranto/bundles/web/core/metafile.json +15086 -0
  98. package/testeranto/bundles/web/{allTests → core}/src/components/pure/ProjectPageView.test/index.html +1 -1
  99. package/testeranto/bundles/web/{allTests → core}/src/components/pure/ProjectPageView.test/index.mjs +4109 -1642
  100. package/testeranto/projects.json +1 -1
  101. package/testeranto/reports/core/config.json +24 -0
  102. package/testeranto/reports/{allTests → core}/src/components/pure/ProjectPageView.test/index/web/lint_errors.txt +6 -1
  103. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/logs.txt +59 -0
  104. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/message.txt +2 -0
  105. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/prompt.txt +27 -0
  106. package/testeranto/reports/core/src/components/pure/ProjectPageView.test/index/web/suite-0/given-basicRender/then-0/butThen/happyPath.png +0 -0
  107. package/testeranto/reports/{allTests → core}/src/components/pure/ProjectPageView.test/index/web/type_errors.txt +15 -33
  108. package/testeranto/reports/core/summary.json +9 -0
  109. package/testeranto.config.ts +49 -32
  110. package/tsc.log +78 -92
  111. package/testeranto/bundles/node/allTests/chunk-3EUGBAOM.mjs +0 -113
  112. package/testeranto/bundles/node/allTests/chunk-E75CSRER.mjs +0 -800
  113. package/testeranto/bundles/node/allTests/chunk-M6DO7VMB.mjs +0 -252
  114. package/testeranto/bundles/node/allTests/metafile.json +0 -1229
  115. package/testeranto/bundles/node/allTests/src/lib/BaseSuite.test/node.test.mjs +0 -323
  116. package/testeranto/bundles/node/allTests/src/lib/baseBuilder.test/baseBuilder.test.node.mjs +0 -223
  117. package/testeranto/bundles/node/allTests/src/lib/classBuilder.test/classBuilder.test.mjs +0 -411
  118. package/testeranto/bundles/node/allTests/src/lib/core.test/core.test.mjs +0 -528
  119. package/testeranto/bundles/node/allTests/src/lib/pmProxy.test/index.mjs +0 -4752
  120. package/testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs +0 -185
  121. package/testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs +0 -797
  122. package/testeranto/bundles/pure/allTests/metafile.json +0 -1054
  123. package/testeranto/bundles/pure/allTests/src/Pure.test.mjs +0 -429
  124. package/testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs +0 -425
  125. package/testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs +0 -381
  126. package/testeranto/bundles/web/allTests/chunk-HPYA4YZC.mjs +0 -2283
  127. package/testeranto/bundles/web/allTests/chunk-U7AW26HL.mjs +0 -997
  128. package/testeranto/bundles/web/allTests/metafile.json +0 -25
  129. package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.html +0 -19
  130. package/testeranto/bundles/web/allTests/src/lib/BaseSuite.test/web.test.mjs +0 -440
  131. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.html +0 -19
  132. package/testeranto/bundles/web/allTests/src/lib/baseBuilder.test/baseBuilder.test.web.mjs +0 -244
  133. package/testeranto/reports/allTests/config.json +0 -104
  134. package/testeranto/reports/allTests/src/Pure.test/pure/lint_errors.txt +0 -0
  135. package/testeranto/reports/allTests/src/Pure.test/pure/message.txt +0 -2
  136. package/testeranto/reports/allTests/src/Pure.test/pure/prompt.txt +0 -13
  137. package/testeranto/reports/allTests/src/Pure.test/pure/type_errors.txt +0 -101
  138. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/bdd_errors.txt +0 -1
  139. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/logs.txt +0 -50
  140. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/message.txt +0 -2
  141. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/prompt.txt +0 -17
  142. package/testeranto/reports/allTests/src/components/pure/ProjectPageView.test/index/web/tests.json +0 -32
  143. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/bdd_errors.txt +0 -1
  144. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/lint_errors.txt +0 -0
  145. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/logs.txt +0 -52
  146. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/message.txt +0 -2
  147. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/prompt.txt +0 -13
  148. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/tests.json +0 -31
  149. package/testeranto/reports/allTests/src/lib/BaseSuite.test/node.test/node/type_errors.txt +0 -111
  150. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/bdd_errors.txt +0 -1
  151. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/lint_errors.txt +0 -0
  152. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/message.txt +0 -2
  153. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/prompt.txt +0 -14
  154. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/tests.json +0 -31
  155. package/testeranto/reports/allTests/src/lib/BaseSuite.test/pure.test/pure/type_errors.txt +0 -111
  156. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/bdd_errors.txt +0 -1
  157. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/lint_errors.txt +0 -0
  158. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/logs.txt +0 -108
  159. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/message.txt +0 -2
  160. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/prompt.txt +0 -14
  161. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/tests.json +0 -31
  162. package/testeranto/reports/allTests/src/lib/BaseSuite.test/web.test/web/type_errors.txt +0 -111
  163. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/bdd_errors.txt +0 -1
  164. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/lint_errors.txt +0 -0
  165. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/logs.txt +0 -35
  166. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/message.txt +0 -2
  167. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/prompt.txt +0 -16
  168. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/tests.json +0 -77
  169. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.node/node/type_errors.txt +0 -62
  170. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/lint_errors.txt +0 -0
  171. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/message.txt +0 -2
  172. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/prompt.txt +0 -18
  173. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure/pure/type_errors.txt +0 -62
  174. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/bdd_errors.txt +0 -1
  175. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/lint_errors.txt +0 -0
  176. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/logs.txt +0 -69
  177. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/message.txt +0 -2
  178. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/prompt.txt +0 -16
  179. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/tests.json +0 -77
  180. package/testeranto/reports/allTests/src/lib/baseBuilder.test/baseBuilder.test.web/web/type_errors.txt +0 -62
  181. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/bdd_errors.txt +0 -1
  182. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/lint_errors.txt +0 -0
  183. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/logs.txt +0 -700
  184. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/message.txt +0 -2
  185. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/prompt.txt +0 -16
  186. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/tests.json +0 -164
  187. package/testeranto/reports/allTests/src/lib/classBuilder.test/classBuilder.test/node/type_errors.txt +0 -138
  188. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/lint_errors.txt +0 -21
  189. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/logs.txt +0 -7
  190. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/message.txt +0 -2
  191. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/prompt.txt +0 -18
  192. package/testeranto/reports/allTests/src/lib/core.test/core.test/node/type_errors.txt +0 -63
  193. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/bdd_errors.txt +0 -1
  194. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/lint_errors.txt +0 -20
  195. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/logs.txt +0 -31
  196. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/message.txt +0 -2
  197. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/prompt.txt +0 -16
  198. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/tests.json +0 -134
  199. package/testeranto/reports/allTests/src/lib/pmProxy.test/index/node/type_errors.txt +0 -76
  200. package/testeranto/reports/allTests/summary.json +0 -79
  201. package/testeranto/reportsnode_build_errors +0 -20
  202. package/testeranto/reportspure_build_errors +0 -343
  203. package/testeranto/reportsweb_build_errors +0 -25
@@ -1,1054 +0,0 @@
1
- {
2
- "errors": [],
3
- "warnings": [
4
- {
5
- "id": "",
6
- "location": null,
7
- "notes": [],
8
- "pluginName": "console-detector",
9
- "text": "call of \"console.debug\" was detected, which is not supported in the pure runtime."
10
- },
11
- {
12
- "id": "",
13
- "location": {
14
- "column": 27,
15
- "file": "src/Pure.test.ts",
16
- "length": 31,
17
- "line": 11,
18
- "lineText": "import { MockPMBase } from \"./lib/pmProxy.test/mockPMBase\";",
19
- "namespace": "",
20
- "suggestion": ""
21
- },
22
- "notes": [],
23
- "pluginName": "console-detector",
24
- "text": "call of \"console.debug\" was detected, which is not supported in the pure runtime."
25
- },
26
- {
27
- "id": "",
28
- "location": {
29
- "column": 24,
30
- "file": "src/Pure.ts",
31
- "length": 14,
32
- "line": 15,
33
- "lineText": "import { PM_Pure } from \"./PM/pure.js\";",
34
- "namespace": "",
35
- "suggestion": ""
36
- },
37
- "notes": [],
38
- "pluginName": "console-detector",
39
- "text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
40
- },
41
- {
42
- "id": "",
43
- "location": {
44
- "column": 23,
45
- "file": "src/Web.ts",
46
- "length": 10,
47
- "line": 11,
48
- "lineText": "import { PM_Web } from \"./PM/web\";",
49
- "namespace": "",
50
- "suggestion": ""
51
- },
52
- "notes": [],
53
- "pluginName": "console-detector",
54
- "text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
55
- },
56
- {
57
- "id": "",
58
- "location": {
59
- "column": 7,
60
- "file": "src/Web.ts",
61
- "length": 16,
62
- "line": 18,
63
- "lineText": "} from \"./lib/index.js\";",
64
- "namespace": "",
65
- "suggestion": ""
66
- },
67
- "notes": [],
68
- "pluginName": "console-detector",
69
- "text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
70
- },
71
- {
72
- "id": "",
73
- "location": {
74
- "column": 23,
75
- "file": "src/lib/BaseSuite.test/pure.test.ts",
76
- "length": 12,
77
- "line": 2,
78
- "lineText": "import Testeranto from \"../../Pure\";",
79
- "namespace": "",
80
- "suggestion": ""
81
- },
82
- "notes": [],
83
- "pluginName": "console-detector",
84
- "text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
85
- },
86
- {
87
- "id": "",
88
- "location": {
89
- "column": 23,
90
- "file": "src/lib/BaseSuite.test/pure.test.ts",
91
- "length": 12,
92
- "line": 2,
93
- "lineText": "import Testeranto from \"../../Pure\";",
94
- "namespace": "",
95
- "suggestion": ""
96
- },
97
- "notes": [],
98
- "pluginName": "console-detector",
99
- "text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
100
- },
101
- {
102
- "id": "",
103
- "location": {
104
- "column": 26,
105
- "file": "src/lib/BaseSuite.test/pure.test.ts",
106
- "length": 14,
107
- "line": 4,
108
- "lineText": "import { BaseSuite } from \"../BaseSuite\";",
109
- "namespace": "",
110
- "suggestion": ""
111
- },
112
- "notes": [],
113
- "pluginName": "console-detector",
114
- "text": "call of \"console.debug\" was detected, which is not supported in the pure runtime."
115
- },
116
- {
117
- "id": "",
118
- "location": {
119
- "column": 26,
120
- "file": "src/lib/BaseSuite.test/pure.test.ts",
121
- "length": 14,
122
- "line": 4,
123
- "lineText": "import { BaseSuite } from \"../BaseSuite\";",
124
- "namespace": "",
125
- "suggestion": ""
126
- },
127
- "notes": [],
128
- "pluginName": "console-detector",
129
- "text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
130
- },
131
- {
132
- "id": "",
133
- "location": {
134
- "column": 26,
135
- "file": "src/lib/BaseSuite.test/pure.test.ts",
136
- "length": 14,
137
- "line": 4,
138
- "lineText": "import { BaseSuite } from \"../BaseSuite\";",
139
- "namespace": "",
140
- "suggestion": ""
141
- },
142
- "notes": [],
143
- "pluginName": "console-detector",
144
- "text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
145
- },
146
- {
147
- "id": "",
148
- "location": {
149
- "column": 65,
150
- "file": "src/lib/BaseSuite.test/pure.test.ts",
151
- "length": 8,
152
- "line": 6,
153
- "lineText": "import { I, implementation, O, specification, testAdapter } from \"./test\";",
154
- "namespace": "",
155
- "suggestion": ""
156
- },
157
- "notes": [],
158
- "pluginName": "console-detector",
159
- "text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
160
- },
161
- {
162
- "id": "",
163
- "location": {
164
- "column": 65,
165
- "file": "src/lib/BaseSuite.test/pure.test.ts",
166
- "length": 8,
167
- "line": 6,
168
- "lineText": "import { I, implementation, O, specification, testAdapter } from \"./test\";",
169
- "namespace": "",
170
- "suggestion": ""
171
- },
172
- "notes": [],
173
- "pluginName": "console-detector",
174
- "text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
175
- },
176
- {
177
- "id": "",
178
- "location": {
179
- "column": 26,
180
- "file": "src/lib/BaseSuite.test/test.ts",
181
- "length": 8,
182
- "line": 14,
183
- "lineText": "import { MockSuite } from \"./mock\";",
184
- "namespace": "",
185
- "suggestion": ""
186
- },
187
- "notes": [],
188
- "pluginName": "console-detector",
189
- "text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
190
- },
191
- {
192
- "id": "",
193
- "location": {
194
- "column": 26,
195
- "file": "src/lib/BaseSuite.test/test.ts",
196
- "length": 8,
197
- "line": 14,
198
- "lineText": "import { MockSuite } from \"./mock\";",
199
- "namespace": "",
200
- "suggestion": ""
201
- },
202
- "notes": [],
203
- "pluginName": "console-detector",
204
- "text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
205
- },
206
- {
207
- "id": "",
208
- "location": {
209
- "column": 46,
210
- "file": "src/lib/BaseSuite.ts",
211
- "length": 11,
212
- "line": 5,
213
- "lineText": "import { beforeAllProxy, afterAllProxy } from \"./pmProxy\";",
214
- "namespace": "",
215
- "suggestion": ""
216
- },
217
- "notes": [],
218
- "pluginName": "console-detector",
219
- "text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
220
- },
221
- {
222
- "id": "",
223
- "location": {
224
- "column": 46,
225
- "file": "src/lib/BaseSuite.ts",
226
- "length": 11,
227
- "line": 5,
228
- "lineText": "import { beforeAllProxy, afterAllProxy } from \"./pmProxy\";",
229
- "namespace": "",
230
- "suggestion": ""
231
- },
232
- "notes": [],
233
- "pluginName": "console-detector",
234
- "text": "call of \"console.warn\" was detected, which is not supported in the pure runtime."
235
- },
236
- {
237
- "id": "",
238
- "location": {
239
- "column": 23,
240
- "file": "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
241
- "length": 11,
242
- "line": 2,
243
- "lineText": "import Testeranto from \"../../Web\";",
244
- "namespace": "",
245
- "suggestion": ""
246
- },
247
- "notes": [],
248
- "pluginName": "console-detector",
249
- "text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
250
- },
251
- {
252
- "id": "",
253
- "location": {
254
- "column": 31,
255
- "file": "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
256
- "length": 35,
257
- "line": 5,
258
- "lineText": "import { implementation } from \"./baseBuilder.test.implementation\";",
259
- "namespace": "",
260
- "suggestion": ""
261
- },
262
- "notes": [],
263
- "pluginName": "console-detector",
264
- "text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
265
- },
266
- {
267
- "id": "",
268
- "location": {
269
- "column": 28,
270
- "file": "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
271
- "length": 28,
272
- "line": 6,
273
- "lineText": "import { testAdapter } from \"./baseBuilder.test.adapter\";",
274
- "namespace": "",
275
- "suggestion": ""
276
- },
277
- "notes": [],
278
- "pluginName": "console-detector",
279
- "text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
280
- },
281
- {
282
- "id": "",
283
- "location": {
284
- "column": 46,
285
- "file": "src/lib/core.ts",
286
- "length": 19,
287
- "line": 20,
288
- "lineText": "import { BaseGiven, BaseWhen, BaseThen } from \"./abstractBase.js\";",
289
- "namespace": "",
290
- "suggestion": ""
291
- },
292
- "notes": [],
293
- "pluginName": "console-detector",
294
- "text": "call of \"console.debug\" was detected, which is not supported in the pure runtime."
295
- },
296
- {
297
- "id": "",
298
- "location": {
299
- "column": 46,
300
- "file": "src/lib/core.ts",
301
- "length": 19,
302
- "line": 20,
303
- "lineText": "import { BaseGiven, BaseWhen, BaseThen } from \"./abstractBase.js\";",
304
- "namespace": "",
305
- "suggestion": ""
306
- },
307
- "notes": [],
308
- "pluginName": "console-detector",
309
- "text": "call of \"console.error\" was detected, which is not supported in the pure runtime."
310
- },
311
- {
312
- "id": "",
313
- "location": {
314
- "column": 46,
315
- "file": "src/lib/core.ts",
316
- "length": 19,
317
- "line": 20,
318
- "lineText": "import { BaseGiven, BaseWhen, BaseThen } from \"./abstractBase.js\";",
319
- "namespace": "",
320
- "suggestion": ""
321
- },
322
- "notes": [],
323
- "pluginName": "console-detector",
324
- "text": "call of \"console.log\" was detected, which is not supported in the pure runtime."
325
- }
326
- ],
327
- "metafile": {
328
- "inputs": {
329
- "src/lib/index.ts": {
330
- "bytes": 3568,
331
- "imports": [
332
- {
333
- "path": "../PM/pure.js",
334
- "kind": "import-statement",
335
- "external": true
336
- },
337
- {
338
- "path": "../PM/node.js",
339
- "kind": "import-statement",
340
- "external": true
341
- },
342
- {
343
- "path": "../PM/web.js",
344
- "kind": "import-statement",
345
- "external": true
346
- },
347
- {
348
- "path": "../Types.js",
349
- "kind": "import-statement",
350
- "external": true
351
- },
352
- {
353
- "path": "./abstractBase.js",
354
- "kind": "import-statement",
355
- "external": true
356
- },
357
- {
358
- "path": "./types.js",
359
- "kind": "import-statement",
360
- "external": true
361
- },
362
- {
363
- "path": "./BaseSuite.js",
364
- "kind": "import-statement",
365
- "external": true
366
- }
367
- ],
368
- "format": "esm"
369
- },
370
- "src/lib/pmProxy.ts": {
371
- "bytes": 7280,
372
- "imports": [
373
- {
374
- "path": "./types",
375
- "kind": "import-statement",
376
- "external": true
377
- }
378
- ],
379
- "format": "esm"
380
- },
381
- "src/lib/abstractBase.ts": {
382
- "bytes": 7465,
383
- "imports": [
384
- {
385
- "path": ".",
386
- "kind": "import-statement",
387
- "external": true
388
- },
389
- {
390
- "path": "./types.js",
391
- "kind": "import-statement",
392
- "external": true
393
- },
394
- {
395
- "path": "src/lib/pmProxy.ts",
396
- "kind": "import-statement",
397
- "original": "./pmProxy.js"
398
- }
399
- ],
400
- "format": "esm"
401
- },
402
- "src/lib/basebuilder.ts": {
403
- "bytes": 4874,
404
- "imports": [
405
- {
406
- "path": "stream",
407
- "kind": "import-statement",
408
- "external": true
409
- },
410
- {
411
- "path": ".",
412
- "kind": "import-statement",
413
- "external": true
414
- },
415
- {
416
- "path": "./types.js",
417
- "kind": "import-statement",
418
- "external": true
419
- },
420
- {
421
- "path": "./abstractBase.js",
422
- "kind": "import-statement",
423
- "external": true
424
- },
425
- {
426
- "path": "./BaseSuite",
427
- "kind": "import-statement",
428
- "external": true
429
- }
430
- ],
431
- "format": "esm"
432
- },
433
- "src/lib/classBuilder.ts": {
434
- "bytes": 3030,
435
- "imports": [
436
- {
437
- "path": "type-fest",
438
- "kind": "import-statement",
439
- "external": true
440
- },
441
- {
442
- "path": "src/lib/basebuilder.ts",
443
- "kind": "import-statement",
444
- "original": "./basebuilder.js"
445
- },
446
- {
447
- "path": "./types.js",
448
- "kind": "import-statement",
449
- "external": true
450
- },
451
- {
452
- "path": "./index.js",
453
- "kind": "import-statement",
454
- "external": true
455
- }
456
- ],
457
- "format": "esm"
458
- },
459
- "src/lib/BaseSuite.ts": {
460
- "bytes": 3863,
461
- "imports": [
462
- {
463
- "path": ".",
464
- "kind": "import-statement",
465
- "external": true
466
- },
467
- {
468
- "path": "../CoreTypes",
469
- "kind": "import-statement",
470
- "external": true
471
- },
472
- {
473
- "path": "./abstractBase",
474
- "kind": "import-statement",
475
- "external": true
476
- },
477
- {
478
- "path": "src/lib/pmProxy.ts",
479
- "kind": "import-statement",
480
- "original": "./pmProxy"
481
- },
482
- {
483
- "path": "./types",
484
- "kind": "import-statement",
485
- "external": true
486
- }
487
- ],
488
- "format": "esm"
489
- },
490
- "src/lib/core.ts": {
491
- "bytes": 3530,
492
- "imports": [
493
- {
494
- "path": "src/lib/index.ts",
495
- "kind": "import-statement",
496
- "original": "./index.js"
497
- },
498
- {
499
- "path": "src/lib/abstractBase.ts",
500
- "kind": "import-statement",
501
- "original": "./abstractBase.js"
502
- },
503
- {
504
- "path": "src/lib/classBuilder.ts",
505
- "kind": "import-statement",
506
- "original": "./classBuilder.js"
507
- },
508
- {
509
- "path": "./types",
510
- "kind": "import-statement",
511
- "external": true
512
- },
513
- {
514
- "path": "src/lib/BaseSuite.ts",
515
- "kind": "import-statement",
516
- "original": "./BaseSuite.js"
517
- }
518
- ],
519
- "format": "esm"
520
- },
521
- "src/PM/index.ts": {
522
- "bytes": 1837,
523
- "imports": [
524
- {
525
- "path": "puppeteer-core",
526
- "kind": "import-statement",
527
- "external": true
528
- },
529
- {
530
- "path": "puppeteer-core/lib/esm/puppeteer",
531
- "kind": "import-statement",
532
- "external": true
533
- },
534
- {
535
- "path": "../lib",
536
- "kind": "import-statement",
537
- "external": true
538
- }
539
- ],
540
- "format": "esm"
541
- },
542
- "src/PM/pure.ts": {
543
- "bytes": 5767,
544
- "imports": [
545
- {
546
- "path": "puppeteer-core",
547
- "kind": "import-statement",
548
- "external": true
549
- },
550
- {
551
- "path": "puppeteer-core/lib/esm/puppeteer",
552
- "kind": "import-statement",
553
- "external": true
554
- },
555
- {
556
- "path": "../lib",
557
- "kind": "import-statement",
558
- "external": true
559
- },
560
- {
561
- "path": "src/PM/index.ts",
562
- "kind": "import-statement",
563
- "original": "."
564
- }
565
- ],
566
- "format": "esm"
567
- },
568
- "src/Pure.ts": {
569
- "bytes": 2643,
570
- "imports": [
571
- {
572
- "path": "./CoreTypes.js",
573
- "kind": "import-statement",
574
- "external": true
575
- },
576
- {
577
- "path": "src/lib/core.ts",
578
- "kind": "import-statement",
579
- "original": "./lib/core.js"
580
- },
581
- {
582
- "path": "src/lib/index.ts",
583
- "kind": "import-statement",
584
- "original": "./lib/index.js"
585
- },
586
- {
587
- "path": "src/PM/pure.ts",
588
- "kind": "import-statement",
589
- "original": "./PM/pure.js"
590
- }
591
- ],
592
- "format": "esm"
593
- },
594
- "src/lib/BaseSuite.test/mock.ts": {
595
- "bytes": 3599,
596
- "imports": [
597
- {
598
- "path": "src/lib/abstractBase.ts",
599
- "kind": "import-statement",
600
- "original": "../abstractBase"
601
- },
602
- {
603
- "path": "src/lib/BaseSuite.ts",
604
- "kind": "import-statement",
605
- "original": "../BaseSuite"
606
- },
607
- {
608
- "path": "../types",
609
- "kind": "import-statement",
610
- "external": true
611
- },
612
- {
613
- "path": "./test",
614
- "kind": "import-statement",
615
- "external": true
616
- }
617
- ],
618
- "format": "esm"
619
- },
620
- "src/lib/BaseSuite.test/test.ts": {
621
- "bytes": 12580,
622
- "imports": [
623
- {
624
- "path": "..",
625
- "kind": "import-statement",
626
- "external": true
627
- },
628
- {
629
- "path": "../../CoreTypes",
630
- "kind": "import-statement",
631
- "external": true
632
- },
633
- {
634
- "path": "../BaseSuite",
635
- "kind": "import-statement",
636
- "external": true
637
- },
638
- {
639
- "path": "../types",
640
- "kind": "import-statement",
641
- "external": true
642
- },
643
- {
644
- "path": "src/lib/BaseSuite.test/mock.ts",
645
- "kind": "import-statement",
646
- "original": "./mock"
647
- }
648
- ],
649
- "format": "esm"
650
- },
651
- "src/lib/BaseSuite.test/pure.test.ts": {
652
- "bytes": 320,
653
- "imports": [
654
- {
655
- "path": "src/Pure.ts",
656
- "kind": "import-statement",
657
- "original": "../../Pure"
658
- },
659
- {
660
- "path": "src/lib/BaseSuite.ts",
661
- "kind": "import-statement",
662
- "original": "../BaseSuite"
663
- },
664
- {
665
- "path": "src/lib/BaseSuite.test/test.ts",
666
- "kind": "import-statement",
667
- "original": "./test"
668
- }
669
- ],
670
- "format": "esm"
671
- },
672
- "src/lib/pmProxy.test/mockPMBase.ts": {
673
- "bytes": 4024,
674
- "imports": [
675
- {
676
- "path": "puppeteer-core",
677
- "kind": "import-statement",
678
- "external": true
679
- },
680
- {
681
- "path": "../index",
682
- "kind": "import-statement",
683
- "external": true
684
- },
685
- {
686
- "path": "../../PM/base",
687
- "kind": "import-statement",
688
- "external": true
689
- }
690
- ],
691
- "format": "esm"
692
- },
693
- "src/Pure.test.ts": {
694
- "bytes": 11272,
695
- "imports": [
696
- {
697
- "path": "./CoreTypes",
698
- "kind": "import-statement",
699
- "external": true
700
- },
701
- {
702
- "path": "src/Pure.ts",
703
- "kind": "import-statement",
704
- "original": "./Pure"
705
- },
706
- {
707
- "path": "src/lib/pmProxy.test/mockPMBase.ts",
708
- "kind": "import-statement",
709
- "original": "./lib/pmProxy.test/mockPMBase"
710
- },
711
- {
712
- "path": "./lib/types",
713
- "kind": "import-statement",
714
- "external": true
715
- }
716
- ],
717
- "format": "esm"
718
- },
719
- "src/PM/web.ts": {
720
- "bytes": 4168,
721
- "imports": [
722
- {
723
- "path": "stream",
724
- "kind": "import-statement",
725
- "external": true
726
- },
727
- {
728
- "path": "puppeteer-core",
729
- "kind": "import-statement",
730
- "external": true
731
- },
732
- {
733
- "path": "puppeteer-core",
734
- "kind": "import-statement",
735
- "external": true
736
- },
737
- {
738
- "path": "../lib",
739
- "kind": "import-statement",
740
- "external": true
741
- },
742
- {
743
- "path": "src/PM/index.ts",
744
- "kind": "import-statement",
745
- "original": "."
746
- }
747
- ],
748
- "format": "esm"
749
- },
750
- "src/Web.ts": {
751
- "bytes": 2958,
752
- "imports": [
753
- {
754
- "path": "./CoreTypes",
755
- "kind": "import-statement",
756
- "external": true
757
- },
758
- {
759
- "path": "src/PM/web.ts",
760
- "kind": "import-statement",
761
- "original": "./PM/web"
762
- },
763
- {
764
- "path": "src/lib/core.ts",
765
- "kind": "import-statement",
766
- "original": "./lib/core.js"
767
- },
768
- {
769
- "path": "src/lib/index.ts",
770
- "kind": "import-statement",
771
- "original": "./lib/index.js"
772
- }
773
- ],
774
- "format": "esm"
775
- },
776
- "src/lib/baseBuilder.test/baseBuilder.test.specification.ts": {
777
- "bytes": 861,
778
- "imports": [
779
- {
780
- "path": "../../CoreTypes",
781
- "kind": "import-statement",
782
- "external": true
783
- },
784
- {
785
- "path": "./baseBuilder.test.types",
786
- "kind": "import-statement",
787
- "external": true
788
- }
789
- ],
790
- "format": "esm"
791
- },
792
- "src/lib/baseBuilder.test/baseBuilder.test.mock.ts": {
793
- "bytes": 1988,
794
- "imports": [
795
- {
796
- "path": "../../CoreTypes",
797
- "kind": "import-statement",
798
- "external": true
799
- },
800
- {
801
- "path": "src/lib/basebuilder.ts",
802
- "kind": "import-statement",
803
- "original": "../basebuilder"
804
- },
805
- {
806
- "path": "../types",
807
- "kind": "import-statement",
808
- "external": true
809
- },
810
- {
811
- "path": "..",
812
- "kind": "import-statement",
813
- "external": true
814
- }
815
- ],
816
- "format": "esm"
817
- },
818
- "src/lib/baseBuilder.test/baseBuilder.test.implementation.ts": {
819
- "bytes": 3770,
820
- "imports": [
821
- {
822
- "path": "../../CoreTypes",
823
- "kind": "import-statement",
824
- "external": true
825
- },
826
- {
827
- "path": "src/lib/baseBuilder.test/baseBuilder.test.mock.ts",
828
- "kind": "import-statement",
829
- "original": "./baseBuilder.test.mock"
830
- },
831
- {
832
- "path": "./baseBuilder.test.types",
833
- "kind": "import-statement",
834
- "external": true
835
- },
836
- {
837
- "path": "..",
838
- "kind": "import-statement",
839
- "external": true
840
- },
841
- {
842
- "path": "src/lib/basebuilder.ts",
843
- "kind": "import-statement",
844
- "original": "../basebuilder"
845
- }
846
- ],
847
- "format": "esm"
848
- },
849
- "src/lib/baseBuilder.test/baseBuilder.test.adapter.ts": {
850
- "bytes": 890,
851
- "imports": [
852
- {
853
- "path": "../../CoreTypes",
854
- "kind": "import-statement",
855
- "external": true
856
- },
857
- {
858
- "path": "./baseBuilder.test.types",
859
- "kind": "import-statement",
860
- "external": true
861
- }
862
- ],
863
- "format": "esm"
864
- },
865
- "src/lib/baseBuilder.test/baseBuilder.test.pure.ts": {
866
- "bytes": 518,
867
- "imports": [
868
- {
869
- "path": "src/Web.ts",
870
- "kind": "import-statement",
871
- "original": "../../Web"
872
- },
873
- {
874
- "path": "src/lib/baseBuilder.test/baseBuilder.test.specification.ts",
875
- "kind": "import-statement",
876
- "original": "./baseBuilder.test.specification"
877
- },
878
- {
879
- "path": "src/lib/baseBuilder.test/baseBuilder.test.implementation.ts",
880
- "kind": "import-statement",
881
- "original": "./baseBuilder.test.implementation"
882
- },
883
- {
884
- "path": "src/lib/baseBuilder.test/baseBuilder.test.adapter.ts",
885
- "kind": "import-statement",
886
- "original": "./baseBuilder.test.adapter"
887
- },
888
- {
889
- "path": "./baseBuilder.test.types",
890
- "kind": "import-statement",
891
- "external": true
892
- },
893
- {
894
- "path": "src/lib/baseBuilder.test/baseBuilder.test.mock.ts",
895
- "kind": "import-statement",
896
- "original": "./baseBuilder.test.mock"
897
- }
898
- ],
899
- "format": "esm"
900
- }
901
- },
902
- "outputs": {
903
- "testeranto/bundles/pure/allTests/src/lib/BaseSuite.test/pure.test.mjs": {
904
- "imports": [
905
- {
906
- "path": "testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs",
907
- "kind": "import-statement"
908
- },
909
- {
910
- "path": "testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs",
911
- "kind": "import-statement"
912
- }
913
- ],
914
- "exports": [
915
- "default"
916
- ],
917
- "entryPoint": "src/lib/BaseSuite.test/pure.test.ts",
918
- "inputs": {
919
- "src/lib/BaseSuite.test/mock.ts": {
920
- "bytesInOutput": 2763
921
- },
922
- "src/lib/BaseSuite.test/test.ts": {
923
- "bytesInOutput": 8593
924
- },
925
- "src/lib/BaseSuite.test/pure.test.ts": {
926
- "bytesInOutput": 103
927
- }
928
- },
929
- "bytes": 11857
930
- },
931
- "testeranto/bundles/pure/allTests/src/Pure.test.mjs": {
932
- "imports": [
933
- {
934
- "path": "testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs",
935
- "kind": "import-statement"
936
- },
937
- {
938
- "path": "testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs",
939
- "kind": "import-statement"
940
- }
941
- ],
942
- "exports": [
943
- "default"
944
- ],
945
- "entryPoint": "src/Pure.test.ts",
946
- "inputs": {
947
- "src/lib/pmProxy.test/mockPMBase.ts": {
948
- "bytesInOutput": 2884
949
- },
950
- "src/Pure.test.ts": {
951
- "bytesInOutput": 9027
952
- }
953
- },
954
- "bytes": 12189
955
- },
956
- "testeranto/bundles/pure/allTests/chunk-KHDVEHF7.mjs": {
957
- "imports": [
958
- {
959
- "path": "testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs",
960
- "kind": "import-statement"
961
- }
962
- ],
963
- "exports": [
964
- "Pure_default"
965
- ],
966
- "inputs": {
967
- "src/PM/pure.ts": {
968
- "bytesInOutput": 3131
969
- },
970
- "src/Pure.ts": {
971
- "bytesInOutput": 1311
972
- }
973
- },
974
- "bytes": 4689
975
- },
976
- "testeranto/bundles/pure/allTests/src/lib/baseBuilder.test/baseBuilder.test.pure.mjs": {
977
- "imports": [
978
- {
979
- "path": "testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs",
980
- "kind": "import-statement"
981
- }
982
- ],
983
- "exports": [
984
- "default"
985
- ],
986
- "entryPoint": "src/lib/baseBuilder.test/baseBuilder.test.pure.ts",
987
- "inputs": {
988
- "src/PM/web.ts": {
989
- "bytesInOutput": 3059
990
- },
991
- "src/Web.ts": {
992
- "bytesInOutput": 795
993
- },
994
- "src/lib/baseBuilder.test/baseBuilder.test.specification.ts": {
995
- "bytesInOutput": 708
996
- },
997
- "src/lib/baseBuilder.test/baseBuilder.test.mock.ts": {
998
- "bytesInOutput": 906
999
- },
1000
- "src/lib/baseBuilder.test/baseBuilder.test.implementation.ts": {
1001
- "bytesInOutput": 3065
1002
- },
1003
- "src/lib/baseBuilder.test/baseBuilder.test.adapter.ts": {
1004
- "bytesInOutput": 653
1005
- },
1006
- "src/lib/baseBuilder.test/baseBuilder.test.pure.ts": {
1007
- "bytesInOutput": 130
1008
- }
1009
- },
1010
- "bytes": 9902
1011
- },
1012
- "testeranto/bundles/pure/allTests/chunk-VMUSFSZM.mjs": {
1013
- "imports": [],
1014
- "exports": [
1015
- "BaseBuilder",
1016
- "BaseGiven",
1017
- "BaseSuite",
1018
- "BaseThen",
1019
- "BaseWhen",
1020
- "PM",
1021
- "TesterantoCore",
1022
- "defaultTestResourceRequirement"
1023
- ],
1024
- "inputs": {
1025
- "src/lib/pmProxy.ts": {
1026
- "bytesInOutput": 5758
1027
- },
1028
- "src/lib/BaseSuite.ts": {
1029
- "bytesInOutput": 2484
1030
- },
1031
- "src/lib/index.ts": {
1032
- "bytesInOutput": 656
1033
- },
1034
- "src/lib/basebuilder.ts": {
1035
- "bytesInOutput": 2341
1036
- },
1037
- "src/lib/abstractBase.ts": {
1038
- "bytesInOutput": 4973
1039
- },
1040
- "src/lib/classBuilder.ts": {
1041
- "bytesInOutput": 1850
1042
- },
1043
- "src/lib/core.ts": {
1044
- "bytesInOutput": 1827
1045
- },
1046
- "src/PM/index.ts": {
1047
- "bytesInOutput": 20
1048
- }
1049
- },
1050
- "bytes": 20323
1051
- }
1052
- }
1053
- }
1054
- }