@elliemae/encw-leak-runner 1.0.2

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 (261) hide show
  1. package/.eslintrc.cjs +10 -0
  2. package/.stylelintignore +4 -0
  3. package/CHANGELOG.md +51 -0
  4. package/README.md +309 -0
  5. package/babel.config.cjs +2 -0
  6. package/bin/leak-runner.ts +9 -0
  7. package/dist/.tsbuildinfo +1 -0
  8. package/dist/bin/leak-runner.js +792 -0
  9. package/dist/cjs/analysis/thresholdEvaluator.js +46 -0
  10. package/dist/cjs/browser/iframeHeapProfiler.js +46 -0
  11. package/dist/cjs/cli/command.js +16 -0
  12. package/dist/cjs/cli/commands/listCommand.js +47 -0
  13. package/dist/cjs/cli/commands/runCommand.js +111 -0
  14. package/dist/cjs/cli/index.js +42 -0
  15. package/dist/cjs/config/missingRequiredParamError.js +34 -0
  16. package/dist/cjs/config/requiredEnvParams.js +57 -0
  17. package/dist/cjs/config/runnerConfigLoader.js +73 -0
  18. package/dist/cjs/config/runnerConfigSchema.js +40 -0
  19. package/dist/cjs/config/sources/cliOverrideConfigSource.js +44 -0
  20. package/dist/cjs/config/sources/configSource.js +35 -0
  21. package/dist/cjs/config/sources/envVarConfigSource.js +41 -0
  22. package/dist/cjs/config/sources/fileConfigSource.js +62 -0
  23. package/dist/cjs/index.js +52 -0
  24. package/dist/cjs/package.json +7 -0
  25. package/dist/cjs/registry/scenarioRegistry.js +51 -0
  26. package/dist/cjs/reporting/consoleReporter.js +60 -0
  27. package/dist/cjs/reporting/junitReporter.js +75 -0
  28. package/dist/cjs/reporting/reporter.js +16 -0
  29. package/dist/cjs/runner/aiEnhancementStep.js +39 -0
  30. package/dist/cjs/runner/batchRunner.js +76 -0
  31. package/dist/cjs/runner/scenarioRunner.js +165 -0
  32. package/dist/cjs/scenarios/index.js +29 -0
  33. package/dist/cjs/scenarios/one-admin/export-navigation.scenario.js +50 -0
  34. package/dist/cjs/scenarios/one-admin/index.js +27 -0
  35. package/dist/cjs/scenarios/one-admin/page-models/ExportPageModel.js +43 -0
  36. package/dist/cjs/scenarios/one-admin/page-models/SelectSettingsPageModel.js +47 -0
  37. package/dist/cjs/scenarios/one-admin/page-models/index.js +26 -0
  38. package/dist/cjs/types/config.js +27 -0
  39. package/dist/cjs/types/results.js +16 -0
  40. package/dist/cjs/types/scenario.js +16 -0
  41. package/dist/esm/analysis/thresholdEvaluator.js +26 -0
  42. package/dist/esm/browser/iframeHeapProfiler.js +26 -0
  43. package/dist/esm/cli/command.js +0 -0
  44. package/dist/esm/cli/commands/listCommand.js +27 -0
  45. package/dist/esm/cli/commands/runCommand.js +93 -0
  46. package/dist/esm/cli/index.js +22 -0
  47. package/dist/esm/config/missingRequiredParamError.js +14 -0
  48. package/dist/esm/config/requiredEnvParams.js +37 -0
  49. package/dist/esm/config/runnerConfigLoader.js +53 -0
  50. package/dist/esm/config/runnerConfigSchema.js +20 -0
  51. package/dist/esm/config/sources/cliOverrideConfigSource.js +24 -0
  52. package/dist/esm/config/sources/configSource.js +15 -0
  53. package/dist/esm/config/sources/envVarConfigSource.js +21 -0
  54. package/dist/esm/config/sources/fileConfigSource.js +34 -0
  55. package/dist/esm/index.js +35 -0
  56. package/dist/esm/package.json +7 -0
  57. package/dist/esm/registry/scenarioRegistry.js +31 -0
  58. package/dist/esm/reporting/consoleReporter.js +40 -0
  59. package/dist/esm/reporting/junitReporter.js +45 -0
  60. package/dist/esm/reporting/reporter.js +0 -0
  61. package/dist/esm/runner/aiEnhancementStep.js +22 -0
  62. package/dist/esm/runner/batchRunner.js +56 -0
  63. package/dist/esm/runner/scenarioRunner.js +137 -0
  64. package/dist/esm/scenarios/index.js +9 -0
  65. package/dist/esm/scenarios/one-admin/export-navigation.scenario.js +33 -0
  66. package/dist/esm/scenarios/one-admin/index.js +7 -0
  67. package/dist/esm/scenarios/one-admin/page-models/ExportPageModel.js +23 -0
  68. package/dist/esm/scenarios/one-admin/page-models/SelectSettingsPageModel.js +27 -0
  69. package/dist/esm/scenarios/one-admin/page-models/index.js +6 -0
  70. package/dist/esm/types/config.js +7 -0
  71. package/dist/esm/types/results.js +0 -0
  72. package/dist/esm/types/scenario.js +0 -0
  73. package/dist/types/bin/leak-runner.d.ts +2 -0
  74. package/dist/types/lib/analysis/tests/thresholdEvaluator.test.d.ts +1 -0
  75. package/dist/types/lib/analysis/thresholdEvaluator.d.ts +6 -0
  76. package/dist/types/lib/browser/iframeHeapProfiler.d.ts +9 -0
  77. package/dist/types/lib/browser/tests/iframeHeapProfiler.test.d.ts +1 -0
  78. package/dist/types/lib/cli/command.d.ts +17 -0
  79. package/dist/types/lib/cli/commands/listCommand.d.ts +5 -0
  80. package/dist/types/lib/cli/commands/runCommand.d.ts +7 -0
  81. package/dist/types/lib/cli/index.d.ts +4 -0
  82. package/dist/types/lib/config/missingRequiredParamError.d.ts +4 -0
  83. package/dist/types/lib/config/requiredEnvParams.d.ts +16 -0
  84. package/dist/types/lib/config/runnerConfigLoader.d.ts +13 -0
  85. package/dist/types/lib/config/runnerConfigSchema.d.ts +78 -0
  86. package/dist/types/lib/config/sources/cliOverrideConfigSource.d.ts +14 -0
  87. package/dist/types/lib/config/sources/configSource.d.ts +14 -0
  88. package/dist/types/lib/config/sources/envVarConfigSource.d.ts +7 -0
  89. package/dist/types/lib/config/sources/fileConfigSource.d.ts +9 -0
  90. package/dist/types/lib/config/tests/cliOverrideConfigSource.test.d.ts +1 -0
  91. package/dist/types/lib/config/tests/envVarConfigSource.test.d.ts +1 -0
  92. package/dist/types/lib/config/tests/fileConfigSource.test.d.ts +1 -0
  93. package/dist/types/lib/config/tests/requiredEnvParams.test.d.ts +1 -0
  94. package/dist/types/lib/config/tests/runnerConfigLoader.test.d.ts +1 -0
  95. package/dist/types/lib/index.d.ts +18 -0
  96. package/dist/types/lib/registry/scenarioRegistry.d.ts +18 -0
  97. package/dist/types/lib/registry/tests/scenarioRegistry.test.d.ts +1 -0
  98. package/dist/types/lib/reporting/consoleReporter.d.ts +5 -0
  99. package/dist/types/lib/reporting/junitReporter.d.ts +5 -0
  100. package/dist/types/lib/reporting/reporter.d.ts +4 -0
  101. package/dist/types/lib/reporting/tests/consoleReporter.test.d.ts +1 -0
  102. package/dist/types/lib/reporting/tests/junitReporter.test.d.ts +1 -0
  103. package/dist/types/lib/runner/aiEnhancementStep.d.ts +15 -0
  104. package/dist/types/lib/runner/batchRunner.d.ts +14 -0
  105. package/dist/types/lib/runner/scenarioRunner.d.ts +15 -0
  106. package/dist/types/lib/runner/tests/aiEnhancementStep.test.d.ts +1 -0
  107. package/dist/types/lib/runner/tests/batchRunner.test.d.ts +1 -0
  108. package/dist/types/lib/runner/tests/scenarioRunner.test.d.ts +1 -0
  109. package/dist/types/lib/scenarios/index.d.ts +2 -0
  110. package/dist/types/lib/scenarios/one-admin/export-navigation.scenario.d.ts +2 -0
  111. package/dist/types/lib/scenarios/one-admin/index.d.ts +2 -0
  112. package/dist/types/lib/scenarios/one-admin/page-models/ExportPageModel.d.ts +8 -0
  113. package/dist/types/lib/scenarios/one-admin/page-models/SelectSettingsPageModel.d.ts +10 -0
  114. package/dist/types/lib/scenarios/one-admin/page-models/index.d.ts +2 -0
  115. package/dist/types/lib/types/config.d.ts +26 -0
  116. package/dist/types/lib/types/results.d.ts +19 -0
  117. package/dist/types/lib/types/scenario.d.ts +17 -0
  118. package/jest.config.cjs +9 -0
  119. package/leak-runner.config.json +13 -0
  120. package/leak-runner.schema.json +27 -0
  121. package/lib/analysis/tests/thresholdEvaluator.test.ts +125 -0
  122. package/lib/analysis/thresholdEvaluator.ts +36 -0
  123. package/lib/browser/iframeHeapProfiler.ts +30 -0
  124. package/lib/browser/tests/iframeHeapProfiler.test.ts +71 -0
  125. package/lib/cli/command.ts +19 -0
  126. package/lib/cli/commands/listCommand.ts +36 -0
  127. package/lib/cli/commands/runCommand.ts +126 -0
  128. package/lib/cli/index.ts +25 -0
  129. package/lib/config/missingRequiredParamError.ts +10 -0
  130. package/lib/config/requiredEnvParams.ts +50 -0
  131. package/lib/config/runnerConfigLoader.ts +84 -0
  132. package/lib/config/runnerConfigSchema.ts +27 -0
  133. package/lib/config/sources/cliOverrideConfigSource.ts +30 -0
  134. package/lib/config/sources/configSource.ts +27 -0
  135. package/lib/config/sources/envVarConfigSource.ts +23 -0
  136. package/lib/config/sources/fileConfigSource.ts +39 -0
  137. package/lib/config/tests/cliOverrideConfigSource.test.ts +25 -0
  138. package/lib/config/tests/envVarConfigSource.test.ts +57 -0
  139. package/lib/config/tests/fileConfigSource.test.ts +49 -0
  140. package/lib/config/tests/requiredEnvParams.test.ts +113 -0
  141. package/lib/config/tests/runnerConfigLoader.test.ts +59 -0
  142. package/lib/index.ts +37 -0
  143. package/lib/registry/scenarioRegistry.ts +48 -0
  144. package/lib/registry/tests/scenarioRegistry.test.ts +96 -0
  145. package/lib/reporting/consoleReporter.ts +48 -0
  146. package/lib/reporting/junitReporter.ts +62 -0
  147. package/lib/reporting/reporter.ts +5 -0
  148. package/lib/reporting/tests/consoleReporter.test.ts +82 -0
  149. package/lib/reporting/tests/junitReporter.test.ts +103 -0
  150. package/lib/runner/aiEnhancementStep.ts +39 -0
  151. package/lib/runner/batchRunner.ts +71 -0
  152. package/lib/runner/scenarioRunner.ts +189 -0
  153. package/lib/runner/tests/aiEnhancementStep.test.ts +174 -0
  154. package/lib/runner/tests/batchRunner.test.ts +133 -0
  155. package/lib/runner/tests/scenarioRunner.test.ts +162 -0
  156. package/lib/scenarios/index.ts +8 -0
  157. package/lib/scenarios/one-admin/export-navigation.scenario.ts +38 -0
  158. package/lib/scenarios/one-admin/index.ts +6 -0
  159. package/lib/scenarios/one-admin/page-models/ExportPageModel.ts +26 -0
  160. package/lib/scenarios/one-admin/page-models/SelectSettingsPageModel.ts +30 -0
  161. package/lib/scenarios/one-admin/page-models/index.ts +2 -0
  162. package/lib/types/config.ts +34 -0
  163. package/lib/types/results.ts +22 -0
  164. package/lib/types/scenario.ts +18 -0
  165. package/package.json +46 -0
  166. package/reports/analysis/index.html +116 -0
  167. package/reports/analysis/thresholdEvaluator.ts.html +193 -0
  168. package/reports/base.css +224 -0
  169. package/reports/block-navigation.js +87 -0
  170. package/reports/browser/iframeHeapProfiler.ts.html +175 -0
  171. package/reports/browser/index.html +116 -0
  172. package/reports/cli/commands/index.html +131 -0
  173. package/reports/cli/commands/listCommand.ts.html +193 -0
  174. package/reports/cli/commands/runCommand.ts.html +463 -0
  175. package/reports/cli/index.html +116 -0
  176. package/reports/cli/index.ts.html +160 -0
  177. package/reports/config/index.html +161 -0
  178. package/reports/config/missingRequiredParamError.ts.html +115 -0
  179. package/reports/config/requiredEnvParams.ts.html +235 -0
  180. package/reports/config/runnerConfigLoader.ts.html +337 -0
  181. package/reports/config/runnerConfigSchema.ts.html +166 -0
  182. package/reports/config/sources/cliOverrideConfigSource.ts.html +175 -0
  183. package/reports/config/sources/configSource.ts.html +166 -0
  184. package/reports/config/sources/envVarConfigSource.ts.html +154 -0
  185. package/reports/config/sources/fileConfigSource.ts.html +202 -0
  186. package/reports/config/sources/index.html +161 -0
  187. package/reports/favicon.png +0 -0
  188. package/reports/index.html +296 -0
  189. package/reports/lcov-report/analysis/index.html +116 -0
  190. package/reports/lcov-report/analysis/thresholdEvaluator.ts.html +193 -0
  191. package/reports/lcov-report/base.css +224 -0
  192. package/reports/lcov-report/block-navigation.js +87 -0
  193. package/reports/lcov-report/browser/iframeHeapProfiler.ts.html +175 -0
  194. package/reports/lcov-report/browser/index.html +116 -0
  195. package/reports/lcov-report/cli/commands/index.html +131 -0
  196. package/reports/lcov-report/cli/commands/listCommand.ts.html +193 -0
  197. package/reports/lcov-report/cli/commands/runCommand.ts.html +463 -0
  198. package/reports/lcov-report/cli/index.html +116 -0
  199. package/reports/lcov-report/cli/index.ts.html +160 -0
  200. package/reports/lcov-report/config/index.html +161 -0
  201. package/reports/lcov-report/config/missingRequiredParamError.ts.html +115 -0
  202. package/reports/lcov-report/config/requiredEnvParams.ts.html +235 -0
  203. package/reports/lcov-report/config/runnerConfigLoader.ts.html +337 -0
  204. package/reports/lcov-report/config/runnerConfigSchema.ts.html +166 -0
  205. package/reports/lcov-report/config/sources/cliOverrideConfigSource.ts.html +175 -0
  206. package/reports/lcov-report/config/sources/configSource.ts.html +166 -0
  207. package/reports/lcov-report/config/sources/envVarConfigSource.ts.html +154 -0
  208. package/reports/lcov-report/config/sources/fileConfigSource.ts.html +202 -0
  209. package/reports/lcov-report/config/sources/index.html +161 -0
  210. package/reports/lcov-report/favicon.png +0 -0
  211. package/reports/lcov-report/index.html +296 -0
  212. package/reports/lcov-report/prettify.css +1 -0
  213. package/reports/lcov-report/prettify.js +2 -0
  214. package/reports/lcov-report/registry/index.html +116 -0
  215. package/reports/lcov-report/registry/scenarioRegistry.ts.html +229 -0
  216. package/reports/lcov-report/reporting/consoleReporter.ts.html +229 -0
  217. package/reports/lcov-report/reporting/index.html +131 -0
  218. package/reports/lcov-report/reporting/junitReporter.ts.html +271 -0
  219. package/reports/lcov-report/runner/aiEnhancementStep.ts.html +202 -0
  220. package/reports/lcov-report/runner/batchRunner.ts.html +298 -0
  221. package/reports/lcov-report/runner/index.html +146 -0
  222. package/reports/lcov-report/runner/scenarioRunner.ts.html +652 -0
  223. package/reports/lcov-report/scenarios/index.html +116 -0
  224. package/reports/lcov-report/scenarios/index.ts.html +109 -0
  225. package/reports/lcov-report/scenarios/one-admin/export-navigation.scenario.ts.html +199 -0
  226. package/reports/lcov-report/scenarios/one-admin/index.html +131 -0
  227. package/reports/lcov-report/scenarios/one-admin/index.ts.html +103 -0
  228. package/reports/lcov-report/scenarios/one-admin/page-models/ExportPageModel.ts.html +163 -0
  229. package/reports/lcov-report/scenarios/one-admin/page-models/SelectSettingsPageModel.ts.html +175 -0
  230. package/reports/lcov-report/scenarios/one-admin/page-models/index.html +131 -0
  231. package/reports/lcov-report/sort-arrow-sprite.png +0 -0
  232. package/reports/lcov-report/sorter.js +210 -0
  233. package/reports/lcov-report/types/config.ts.html +187 -0
  234. package/reports/lcov-report/types/index.html +116 -0
  235. package/reports/lcov.info +883 -0
  236. package/reports/prettify.css +1 -0
  237. package/reports/prettify.js +2 -0
  238. package/reports/registry/index.html +116 -0
  239. package/reports/registry/scenarioRegistry.ts.html +229 -0
  240. package/reports/reporting/consoleReporter.ts.html +229 -0
  241. package/reports/reporting/index.html +131 -0
  242. package/reports/reporting/junitReporter.ts.html +271 -0
  243. package/reports/runner/aiEnhancementStep.ts.html +202 -0
  244. package/reports/runner/batchRunner.ts.html +298 -0
  245. package/reports/runner/index.html +146 -0
  246. package/reports/runner/scenarioRunner.ts.html +652 -0
  247. package/reports/scenarios/index.html +116 -0
  248. package/reports/scenarios/index.ts.html +109 -0
  249. package/reports/scenarios/one-admin/export-navigation.scenario.ts.html +199 -0
  250. package/reports/scenarios/one-admin/index.html +131 -0
  251. package/reports/scenarios/one-admin/index.ts.html +103 -0
  252. package/reports/scenarios/one-admin/page-models/ExportPageModel.ts.html +163 -0
  253. package/reports/scenarios/one-admin/page-models/SelectSettingsPageModel.ts.html +175 -0
  254. package/reports/scenarios/one-admin/page-models/index.html +131 -0
  255. package/reports/sort-arrow-sprite.png +0 -0
  256. package/reports/sorter.js +210 -0
  257. package/reports/types/config.ts.html +187 -0
  258. package/reports/types/index.html +116 -0
  259. package/stylelint.config.cjs +2 -0
  260. package/test-report.xml +100 -0
  261. package/tsconfig.json +12 -0
@@ -0,0 +1,883 @@
1
+ TN:
2
+ SF:lib/analysis/thresholdEvaluator.ts
3
+ FN:5,toMB
4
+ FN:10,(anonymous_2)
5
+ FNF:2
6
+ FNH:2
7
+ FNDA:4,toMB
8
+ FNDA:7,(anonymous_2)
9
+ DA:6,4
10
+ DA:9,7
11
+ DA:14,7
12
+ DA:16,7
13
+ DA:17,2
14
+ DA:23,7
15
+ DA:24,7
16
+ DA:25,2
17
+ DA:30,7
18
+ DA:31,4
19
+ DA:34,3
20
+ LF:11
21
+ LH:11
22
+ BRDA:16,0,0,2
23
+ BRDA:24,1,0,2
24
+ BRDA:30,2,0,4
25
+ BRF:3
26
+ BRH:3
27
+ end_of_record
28
+ TN:
29
+ SF:lib/browser/iframeHeapProfiler.ts
30
+ FN:13,(anonymous_2)
31
+ FN:20,(anonymous_3)
32
+ FN:5,(anonymous_4)
33
+ FNF:3
34
+ FNH:3
35
+ FNDA:3,(anonymous_2)
36
+ FNDA:3,(anonymous_3)
37
+ FNDA:4,(anonymous_4)
38
+ DA:1,3
39
+ DA:4,4
40
+ DA:10,4
41
+ DA:17,3
42
+ DA:21,3
43
+ DA:22,3
44
+ DA:23,3
45
+ DA:24,2
46
+ DA:25,2
47
+ DA:27,0
48
+ LF:10
49
+ LH:9
50
+ BRDA:17,0,0,2
51
+ BRDA:17,0,1,1
52
+ BRDA:23,1,0,1
53
+ BRDA:23,2,0,3
54
+ BRDA:23,2,1,3
55
+ BRF:5
56
+ BRH:5
57
+ end_of_record
58
+ TN:
59
+ SF:lib/cli/index.ts
60
+ FN:8,buildProgram
61
+ FN:16,(anonymous_1)
62
+ FN:20,defaultDeps
63
+ FNF:3
64
+ FNH:0
65
+ FNDA:0,buildProgram
66
+ FNDA:0,(anonymous_1)
67
+ FNDA:0,defaultDeps
68
+ DA:9,0
69
+ DA:10,0
70
+ DA:15,0
71
+ DA:16,0
72
+ DA:17,0
73
+ DA:21,0
74
+ LF:6
75
+ LH:0
76
+ BRDA:8,0,0,0
77
+ BRF:1
78
+ BRH:0
79
+ end_of_record
80
+ TN:
81
+ SF:lib/cli/commands/listCommand.ts
82
+ FN:5,(anonymous_0)
83
+ FN:10,(anonymous_1)
84
+ FN:20,(anonymous_2)
85
+ FN:23,(anonymous_3)
86
+ FNF:4
87
+ FNH:0
88
+ FNDA:0,(anonymous_0)
89
+ FNDA:0,(anonymous_1)
90
+ FNDA:0,(anonymous_2)
91
+ FNDA:0,(anonymous_3)
92
+ DA:6,0
93
+ DA:11,0
94
+ DA:15,0
95
+ DA:16,0
96
+ DA:17,0
97
+ DA:20,0
98
+ DA:21,0
99
+ DA:23,0
100
+ DA:24,0
101
+ DA:27,0
102
+ DA:33,0
103
+ LF:11
104
+ LH:0
105
+ BRDA:11,0,0,0
106
+ BRDA:11,0,1,0
107
+ BRDA:15,1,0,0
108
+ BRDA:24,2,0,0
109
+ BRDA:24,2,1,0
110
+ BRF:5
111
+ BRH:0
112
+ end_of_record
113
+ TN:
114
+ SF:lib/cli/commands/runCommand.ts
115
+ FN:27,(anonymous_0)
116
+ FN:39,(anonymous_1)
117
+ FN:45,(anonymous_2)
118
+ FN:48,(anonymous_3)
119
+ FN:67,(anonymous_4)
120
+ FN:103,(anonymous_5)
121
+ FNF:6
122
+ FNH:0
123
+ FNDA:0,(anonymous_0)
124
+ FNDA:0,(anonymous_1)
125
+ FNDA:0,(anonymous_2)
126
+ FNDA:0,(anonymous_3)
127
+ FNDA:0,(anonymous_4)
128
+ FNDA:0,(anonymous_5)
129
+ DA:28,0
130
+ DA:40,0
131
+ DA:45,0
132
+ DA:49,0
133
+ DA:50,0
134
+ DA:51,0
135
+ DA:52,0
136
+ DA:53,0
137
+ DA:54,0
138
+ DA:55,0
139
+ DA:57,0
140
+ DA:58,0
141
+ DA:59,0
142
+ DA:61,0
143
+ DA:62,0
144
+ DA:72,0
145
+ DA:74,0
146
+ DA:83,0
147
+ DA:85,0
148
+ DA:92,0
149
+ DA:93,0
150
+ DA:100,0
151
+ DA:108,0
152
+ DA:109,0
153
+ DA:110,0
154
+ DA:111,0
155
+ DA:112,0
156
+ DA:115,0
157
+ DA:117,0
158
+ DA:119,0
159
+ DA:120,0
160
+ DA:123,0
161
+ DA:124,0
162
+ LF:33
163
+ LH:0
164
+ BRDA:55,0,0,0
165
+ BRDA:55,0,1,0
166
+ BRDA:57,1,0,0
167
+ BRDA:72,2,0,0
168
+ BRDA:72,2,1,0
169
+ BRDA:92,3,0,0
170
+ BRDA:96,4,0,0
171
+ BRDA:96,4,1,0
172
+ BRDA:108,5,0,0
173
+ BRDA:109,6,0,0
174
+ BRDA:111,7,0,0
175
+ BRDA:119,8,0,0
176
+ BRF:12
177
+ BRH:0
178
+ end_of_record
179
+ TN:
180
+ SF:lib/config/missingRequiredParamError.ts
181
+ FN:2,(anonymous_2)
182
+ FNF:1
183
+ FNH:1
184
+ FNDA:4,(anonymous_2)
185
+ DA:1,6
186
+ DA:3,4
187
+ DA:8,4
188
+ LF:3
189
+ LH:3
190
+ BRF:0
191
+ BRH:0
192
+ end_of_record
193
+ TN:
194
+ SF:lib/config/requiredEnvParams.ts
195
+ FN:13,(anonymous_3)
196
+ FN:26,(anonymous_4)
197
+ FN:30,(anonymous_5)
198
+ FN:34,(anonymous_6)
199
+ FN:38,(anonymous_7)
200
+ FN:42,(anonymous_8)
201
+ FNF:6
202
+ FNH:6
203
+ FNDA:6,(anonymous_3)
204
+ FNDA:6,(anonymous_4)
205
+ FNDA:6,(anonymous_5)
206
+ FNDA:6,(anonymous_6)
207
+ FNDA:6,(anonymous_7)
208
+ FNDA:6,(anonymous_8)
209
+ DA:2,1
210
+ DA:10,0
211
+ DA:12,6
212
+ DA:14,6
213
+ DA:15,6
214
+ DA:16,6
215
+ DA:17,6
216
+ DA:19,6
217
+ DA:20,6
218
+ DA:21,6
219
+ DA:23,2
220
+ DA:27,6
221
+ DA:31,6
222
+ DA:35,6
223
+ DA:39,6
224
+ DA:43,6
225
+ DA:44,6
226
+ DA:45,6
227
+ DA:46,6
228
+ DA:47,6
229
+ DA:48,6
230
+ LF:21
231
+ LH:20
232
+ BRDA:21,0,0,4
233
+ BRDA:27,1,0,6
234
+ BRDA:27,1,1,5
235
+ BRDA:27,1,2,2
236
+ BRDA:31,2,0,6
237
+ BRDA:31,2,1,5
238
+ BRDA:31,2,2,3
239
+ BRDA:35,3,0,6
240
+ BRDA:35,3,1,5
241
+ BRDA:35,3,2,3
242
+ BRDA:39,4,0,6
243
+ BRDA:39,4,1,4
244
+ BRDA:44,5,0,2
245
+ BRDA:45,6,0,3
246
+ BRDA:46,7,0,3
247
+ BRDA:47,8,0,4
248
+ BRF:16
249
+ BRH:16
250
+ end_of_record
251
+ TN:
252
+ SF:lib/config/runnerConfigLoader.ts
253
+ FN:21,applyRunnerPayload
254
+ FN:32,applyAiPayload
255
+ FN:43,applySource
256
+ FN:59,(anonymous_5)
257
+ FN:60,(anonymous_6)
258
+ FN:57,(anonymous_7)
259
+ FNF:6
260
+ FNH:6
261
+ FNDA:5,applyRunnerPayload
262
+ FNDA:1,applyAiPayload
263
+ FNDA:6,applySource
264
+ FNDA:5,(anonymous_5)
265
+ FNDA:3,(anonymous_6)
266
+ FNDA:5,(anonymous_7)
267
+ DA:4,1
268
+ DA:25,5
269
+ DA:36,1
270
+ DA:47,6
271
+ DA:48,6
272
+ DA:56,5
273
+ DA:57,5
274
+ DA:60,5
275
+ DA:62,5
276
+ DA:75,5
277
+ DA:77,5
278
+ LF:11
279
+ LH:11
280
+ BRDA:26,0,0,5
281
+ BRDA:26,0,1,3
282
+ BRDA:27,1,0,5
283
+ BRDA:27,1,1,4
284
+ BRDA:28,2,0,5
285
+ BRDA:28,2,1,1
286
+ BRDA:37,3,0,1
287
+ BRDA:37,3,1,0
288
+ BRDA:38,4,0,1
289
+ BRDA:38,4,1,1
290
+ BRDA:39,5,0,1
291
+ BRDA:39,5,1,1
292
+ BRDA:49,6,0,5
293
+ BRDA:49,6,1,1
294
+ BRDA:52,7,0,1
295
+ BRDA:52,7,1,5
296
+ BRDA:64,8,0,5
297
+ BRDA:64,8,1,0
298
+ BRDA:65,9,0,5
299
+ BRDA:65,9,1,0
300
+ BRDA:66,10,0,5
301
+ BRDA:66,10,1,0
302
+ BRDA:69,11,0,5
303
+ BRDA:69,11,1,0
304
+ BRDA:70,12,0,5
305
+ BRDA:70,12,1,0
306
+ BRDA:71,13,0,5
307
+ BRDA:71,13,1,0
308
+ BRF:28
309
+ BRH:21
310
+ end_of_record
311
+ TN:
312
+ SF:lib/config/runnerConfigSchema.ts
313
+ FNF:0
314
+ FNH:0
315
+ DA:1,1
316
+ DA:3,1
317
+ DA:11,1
318
+ DA:19,2
319
+ LF:4
320
+ LH:4
321
+ BRF:0
322
+ BRH:0
323
+ end_of_record
324
+ TN:
325
+ SF:lib/config/sources/cliOverrideConfigSource.ts
326
+ FN:17,(anonymous_2)
327
+ FN:15,(anonymous_3)
328
+ FNF:2
329
+ FNH:2
330
+ FNDA:3,(anonymous_2)
331
+ FNDA:4,(anonymous_3)
332
+ DA:10,4
333
+ DA:11,4
334
+ DA:13,4
335
+ DA:15,4
336
+ DA:18,3
337
+ DA:19,3
338
+ DA:20,1
339
+ DA:22,3
340
+ DA:23,1
341
+ DA:25,3
342
+ DA:26,1
343
+ DA:28,3
344
+ LF:12
345
+ LH:12
346
+ BRDA:19,0,0,1
347
+ BRDA:22,1,0,1
348
+ BRDA:25,2,0,1
349
+ BRDA:28,3,0,1
350
+ BRDA:28,3,1,2
351
+ BRF:5
352
+ BRH:5
353
+ end_of_record
354
+ TN:
355
+ SF:lib/config/sources/configSource.ts
356
+ FNF:0
357
+ FNH:0
358
+ DA:13,30
359
+ DA:16,1
360
+ LF:2
361
+ LH:2
362
+ BRF:0
363
+ BRH:0
364
+ end_of_record
365
+ TN:
366
+ SF:lib/config/sources/envVarConfigSource.ts
367
+ FN:9,(anonymous_2)
368
+ FNF:1
369
+ FNH:1
370
+ FNDA:6,(anonymous_2)
371
+ DA:4,7
372
+ DA:5,7
373
+ DA:7,7
374
+ DA:10,6
375
+ DA:11,6
376
+ DA:12,2
377
+ DA:14,6
378
+ DA:15,1
379
+ DA:17,6
380
+ DA:18,2
381
+ DA:19,2
382
+ DA:21,6
383
+ LF:12
384
+ LH:12
385
+ BRDA:11,0,0,2
386
+ BRDA:14,1,0,1
387
+ BRDA:17,2,0,2
388
+ BRDA:19,3,0,1
389
+ BRDA:19,4,0,2
390
+ BRDA:19,4,1,1
391
+ BRDA:21,5,0,2
392
+ BRDA:21,5,1,4
393
+ BRF:8
394
+ BRH:8
395
+ end_of_record
396
+ TN:
397
+ SF:lib/config/sources/fileConfigSource.ts
398
+ FN:15,(anonymous_3)
399
+ FN:33,(anonymous_4)
400
+ FN:13,(anonymous_5)
401
+ FNF:3
402
+ FNH:3
403
+ FNDA:4,(anonymous_3)
404
+ FNDA:1,(anonymous_4)
405
+ FNDA:5,(anonymous_5)
406
+ DA:1,1
407
+ DA:5,1
408
+ DA:8,5
409
+ DA:9,5
410
+ DA:11,5
411
+ DA:13,5
412
+ DA:16,4
413
+ DA:18,3
414
+ DA:20,3
415
+ DA:21,3
416
+ DA:23,1
417
+ DA:30,2
418
+ DA:31,2
419
+ DA:32,1
420
+ DA:33,1
421
+ DA:35,1
422
+ DA:37,1
423
+ LF:17
424
+ LH:17
425
+ BRDA:16,0,0,1
426
+ BRDA:31,1,0,1
427
+ BRF:2
428
+ BRH:2
429
+ end_of_record
430
+ TN:
431
+ SF:lib/registry/scenarioRegistry.ts
432
+ FN:16,(anonymous_2)
433
+ FN:17,(anonymous_3)
434
+ FN:27,(anonymous_4)
435
+ FN:31,(anonymous_5)
436
+ FN:35,(anonymous_6)
437
+ FN:39,(anonymous_7)
438
+ FN:41,(anonymous_8)
439
+ FN:42,(anonymous_9)
440
+ FN:45,(anonymous_10)
441
+ FN:46,(anonymous_11)
442
+ FNF:10
443
+ FNH:10
444
+ FNDA:13,(anonymous_2)
445
+ FNDA:18,(anonymous_3)
446
+ FNDA:4,(anonymous_4)
447
+ FNDA:1,(anonymous_5)
448
+ FNDA:2,(anonymous_6)
449
+ FNDA:6,(anonymous_7)
450
+ FNDA:12,(anonymous_8)
451
+ FNDA:6,(anonymous_9)
452
+ FNDA:3,(anonymous_10)
453
+ FNDA:6,(anonymous_11)
454
+ DA:13,14
455
+ DA:14,14
456
+ DA:17,13
457
+ DA:18,18
458
+ DA:19,18
459
+ DA:20,1
460
+ DA:22,17
461
+ DA:24,12
462
+ DA:28,4
463
+ DA:32,1
464
+ DA:36,2
465
+ DA:40,6
466
+ DA:41,12
467
+ DA:42,6
468
+ DA:46,6
469
+ LF:15
470
+ LH:15
471
+ BRDA:19,0,0,1
472
+ BRF:1
473
+ BRH:1
474
+ end_of_record
475
+ TN:
476
+ SF:lib/reporting/consoleReporter.ts
477
+ FN:9,formatDuration
478
+ FN:13,printLine
479
+ FN:17,printScenario
480
+ FN:32,(anonymous_4)
481
+ FNF:4
482
+ FNH:4
483
+ FNDA:5,formatDuration
484
+ FNDA:21,printLine
485
+ FNDA:2,printScenario
486
+ FNDA:3,(anonymous_4)
487
+ DA:4,1
488
+ DA:5,1
489
+ DA:6,1
490
+ DA:7,1
491
+ DA:10,5
492
+ DA:14,21
493
+ DA:18,2
494
+ DA:21,2
495
+ DA:22,2
496
+ DA:23,2
497
+ DA:24,1
498
+ DA:26,2
499
+ DA:27,0
500
+ DA:31,3
501
+ DA:33,3
502
+ DA:34,3
503
+ DA:35,3
504
+ DA:37,3
505
+ DA:39,3
506
+ DA:40,3
507
+ DA:41,3
508
+ DA:42,3
509
+ DA:46,3
510
+ LF:23
511
+ LH:22
512
+ BRDA:18,0,0,1
513
+ BRDA:18,0,1,1
514
+ BRDA:23,1,0,1
515
+ BRDA:23,2,0,2
516
+ BRDA:23,2,1,1
517
+ BRDA:26,3,0,0
518
+ BRDA:26,4,0,2
519
+ BRDA:26,4,1,1
520
+ BRF:8
521
+ BRH:7
522
+ end_of_record
523
+ TN:
524
+ SF:lib/reporting/junitReporter.ts
525
+ FN:6,escapeXml
526
+ FN:15,formatSeconds
527
+ FN:19,renderTestCase
528
+ FN:45,(anonymous_5)
529
+ FNF:4
530
+ FNH:4
531
+ FNDA:19,escapeXml
532
+ FNDA:14,formatSeconds
533
+ FNDA:9,renderTestCase
534
+ FNDA:5,(anonymous_5)
535
+ DA:1,1
536
+ DA:2,1
537
+ DA:7,19
538
+ DA:16,14
539
+ DA:20,9
540
+ DA:21,9
541
+ DA:25,9
542
+ DA:26,4
543
+ DA:30,5
544
+ DA:31,5
545
+ DA:35,5
546
+ DA:44,5
547
+ DA:46,5
548
+ DA:47,5
549
+ DA:49,5
550
+ DA:58,5
551
+ DA:59,5
552
+ DA:60,5
553
+ LF:18
554
+ LH:18
555
+ BRDA:25,0,0,4
556
+ BRDA:30,1,0,5
557
+ BRDA:30,1,1,0
558
+ BRDA:30,1,2,0
559
+ BRDA:31,2,0,5
560
+ BRDA:31,2,1,0
561
+ BRDA:33,3,0,0
562
+ BRDA:33,3,1,0
563
+ BRF:8
564
+ BRH:3
565
+ end_of_record
566
+ TN:
567
+ SF:lib/runner/aiEnhancementStep.ts
568
+ FN:21,enhanceMarkdownIfConfigured
569
+ FNF:1
570
+ FNH:1
571
+ FNDA:7,enhanceMarkdownIfConfigured
572
+ DA:6,3
573
+ DA:21,7
574
+ DA:26,7
575
+ DA:28,6
576
+ DA:29,6
577
+ DA:30,6
578
+ DA:31,3
579
+ DA:33,3
580
+ DA:34,3
581
+ DA:37,3
582
+ LF:10
583
+ LH:10
584
+ BRDA:26,0,0,1
585
+ BRDA:33,1,0,2
586
+ BRDA:33,1,1,1
587
+ BRF:3
588
+ BRH:3
589
+ end_of_record
590
+ TN:
591
+ SF:lib/runner/batchRunner.ts
592
+ FN:7,buildSummary
593
+ FN:10,(anonymous_3)
594
+ FN:11,(anonymous_4)
595
+ FN:12,(anonymous_5)
596
+ FN:26,(anonymous_6)
597
+ FN:27,(anonymous_7)
598
+ FN:31,(anonymous_8)
599
+ FN:34,(anonymous_9)
600
+ FN:38,(anonymous_10)
601
+ FN:46,(anonymous_11)
602
+ FN:50,(anonymous_12)
603
+ FN:61,(anonymous_13)
604
+ FN:19,(anonymous_14)
605
+ FNF:13
606
+ FNH:13
607
+ FNDA:4,buildSummary
608
+ FNDA:6,(anonymous_3)
609
+ FNDA:6,(anonymous_4)
610
+ FNDA:6,(anonymous_5)
611
+ FNDA:2,(anonymous_6)
612
+ FNDA:4,(anonymous_7)
613
+ FNDA:1,(anonymous_8)
614
+ FNDA:1,(anonymous_9)
615
+ FNDA:2,(anonymous_10)
616
+ FNDA:4,(anonymous_11)
617
+ FNDA:6,(anonymous_12)
618
+ FNDA:6,(anonymous_13)
619
+ FNDA:5,(anonymous_14)
620
+ DA:5,1
621
+ DA:8,4
622
+ DA:10,6
623
+ DA:11,6
624
+ DA:12,6
625
+ DA:16,5
626
+ DA:17,5
627
+ DA:20,5
628
+ DA:21,5
629
+ DA:23,5
630
+ DA:27,4
631
+ DA:28,2
632
+ DA:32,1
633
+ DA:34,1
634
+ DA:35,1
635
+ DA:39,2
636
+ DA:40,2
637
+ DA:41,1
638
+ DA:43,1
639
+ DA:49,4
640
+ DA:51,6
641
+ DA:52,6
642
+ DA:53,6
643
+ DA:58,4
644
+ DA:64,6
645
+ DA:65,6
646
+ DA:66,6
647
+ DA:68,6
648
+ LF:28
649
+ LH:28
650
+ BRDA:40,0,0,1
651
+ BRF:1
652
+ BRH:1
653
+ end_of_record
654
+ TN:
655
+ SF:lib/runner/scenarioRunner.ts
656
+ FN:19,resolveIframe
657
+ FN:28,forceGarbageCollection
658
+ FN:42,cleanupSnapshots
659
+ FN:50,(anonymous_6)
660
+ FN:54,(anonymous_7)
661
+ FN:79,(anonymous_8)
662
+ FN:105,(anonymous_9)
663
+ FN:127,(anonymous_10)
664
+ FN:143,(anonymous_11)
665
+ FN:160,(anonymous_12)
666
+ FN:48,(anonymous_13)
667
+ FNF:11
668
+ FNH:6
669
+ FNDA:0,resolveIframe
670
+ FNDA:0,forceGarbageCollection
671
+ FNDA:2,cleanupSnapshots
672
+ FNDA:0,(anonymous_6)
673
+ FNDA:2,(anonymous_7)
674
+ FNDA:2,(anonymous_8)
675
+ FNDA:2,(anonymous_9)
676
+ FNDA:0,(anonymous_10)
677
+ FNDA:0,(anonymous_11)
678
+ FNDA:2,(anonymous_12)
679
+ FNDA:3,(anonymous_13)
680
+ DA:1,2
681
+ DA:2,2
682
+ DA:8,2
683
+ DA:9,2
684
+ DA:11,2
685
+ DA:12,2
686
+ DA:13,2
687
+ DA:17,2
688
+ DA:20,0
689
+ DA:21,0
690
+ DA:22,0
691
+ DA:23,0
692
+ DA:24,0
693
+ DA:25,0
694
+ DA:29,0
695
+ DA:30,0
696
+ DA:31,0
697
+ DA:32,0
698
+ DA:33,0
699
+ DA:34,0
700
+ DA:43,2
701
+ DA:44,2
702
+ DA:47,4
703
+ DA:48,3
704
+ DA:51,0
705
+ DA:58,2
706
+ DA:59,2
707
+ DA:62,2
708
+ DA:63,2
709
+ DA:64,2
710
+ DA:65,2
711
+ DA:67,2
712
+ DA:68,2
713
+ DA:70,2
714
+ DA:72,2
715
+ DA:73,2
716
+ DA:76,2
717
+ DA:84,2
718
+ DA:85,2
719
+ DA:91,0
720
+ DA:92,0
721
+ DA:93,0
722
+ DA:94,0
723
+ DA:96,0
724
+ DA:101,0
725
+ DA:102,0
726
+ DA:110,2
727
+ DA:111,2
728
+ DA:113,2
729
+ DA:114,2
730
+ DA:119,2
731
+ DA:121,0
732
+ DA:122,0
733
+ DA:123,0
734
+ DA:124,0
735
+ DA:132,0
736
+ DA:133,0
737
+ DA:135,0
738
+ DA:136,0
739
+ DA:138,0
740
+ DA:147,0
741
+ DA:151,0
742
+ DA:152,0
743
+ DA:157,0
744
+ DA:166,2
745
+ DA:167,2
746
+ DA:171,2
747
+ DA:176,2
748
+ DA:180,2
749
+ LF:69
750
+ LH:36
751
+ BRDA:21,0,0,0
752
+ BRDA:23,1,0,0
753
+ BRDA:43,2,0,0
754
+ BRDA:43,3,0,2
755
+ BRDA:43,3,1,0
756
+ BRDA:44,4,0,0
757
+ BRDA:44,5,0,2
758
+ BRDA:44,5,1,0
759
+ BRDA:70,6,0,2
760
+ BRDA:70,6,1,0
761
+ BRDA:101,7,0,0
762
+ BRDA:132,8,0,0
763
+ BRDA:132,8,1,0
764
+ BRDA:136,9,0,0
765
+ BRDA:173,10,0,2
766
+ BRDA:173,10,1,0
767
+ BRDA:176,11,0,0
768
+ BRDA:176,11,1,2
769
+ BRDA:176,12,0,2
770
+ BRDA:176,12,1,0
771
+ BRF:20
772
+ BRH:6
773
+ end_of_record
774
+ TN:
775
+ SF:lib/scenarios/index.ts
776
+ FNF:0
777
+ FNH:0
778
+ DA:5,0
779
+ LF:1
780
+ LH:0
781
+ BRF:0
782
+ BRH:0
783
+ end_of_record
784
+ TN:
785
+ SF:lib/scenarios/one-admin/export-navigation.scenario.ts
786
+ FN:14,(anonymous_0)
787
+ FN:16,(anonymous_1)
788
+ FN:28,(anonymous_2)
789
+ FN:32,(anonymous_3)
790
+ FNF:4
791
+ FNH:0
792
+ FNDA:0,(anonymous_0)
793
+ FNDA:0,(anonymous_1)
794
+ FNDA:0,(anonymous_2)
795
+ FNDA:0,(anonymous_3)
796
+ DA:7,0
797
+ DA:14,0
798
+ DA:17,0
799
+ DA:18,0
800
+ DA:19,0
801
+ DA:20,0
802
+ DA:21,0
803
+ DA:23,0
804
+ DA:24,0
805
+ DA:25,0
806
+ DA:29,0
807
+ DA:32,0
808
+ LF:12
809
+ LH:0
810
+ BRF:0
811
+ BRH:0
812
+ end_of_record
813
+ TN:
814
+ SF:lib/scenarios/one-admin/index.ts
815
+ FNF:0
816
+ FNH:0
817
+ DA:4,0
818
+ LF:1
819
+ LH:0
820
+ BRF:0
821
+ BRH:0
822
+ end_of_record
823
+ TN:
824
+ SF:lib/scenarios/one-admin/page-models/ExportPageModel.ts
825
+ FN:9,(anonymous_1)
826
+ FN:13,(anonymous_2)
827
+ FN:17,(anonymous_3)
828
+ FN:7,(anonymous_4)
829
+ FNF:4
830
+ FNH:0
831
+ FNDA:0,(anonymous_1)
832
+ FNDA:0,(anonymous_2)
833
+ FNDA:0,(anonymous_3)
834
+ FNDA:0,(anonymous_4)
835
+ DA:3,0
836
+ DA:4,0
837
+ DA:7,0
838
+ DA:10,0
839
+ DA:14,0
840
+ DA:18,0
841
+ LF:6
842
+ LH:0
843
+ BRF:0
844
+ BRH:0
845
+ end_of_record
846
+ TN:
847
+ SF:lib/scenarios/one-admin/page-models/SelectSettingsPageModel.ts
848
+ FN:6,(anonymous_1)
849
+ FN:10,(anonymous_2)
850
+ FN:14,(anonymous_3)
851
+ FN:23,(anonymous_4)
852
+ FN:27,(anonymous_5)
853
+ FN:4,(anonymous_6)
854
+ FNF:6
855
+ FNH:0
856
+ FNDA:0,(anonymous_1)
857
+ FNDA:0,(anonymous_2)
858
+ FNDA:0,(anonymous_3)
859
+ FNDA:0,(anonymous_4)
860
+ FNDA:0,(anonymous_5)
861
+ FNDA:0,(anonymous_6)
862
+ DA:4,0
863
+ DA:7,0
864
+ DA:11,0
865
+ DA:15,0
866
+ DA:18,0
867
+ DA:24,0
868
+ DA:28,0
869
+ LF:7
870
+ LH:0
871
+ BRF:0
872
+ BRH:0
873
+ end_of_record
874
+ TN:
875
+ SF:lib/types/config.ts
876
+ FNF:0
877
+ FNH:0
878
+ DA:31,7
879
+ LF:1
880
+ LH:1
881
+ BRF:0
882
+ BRH:0
883
+ end_of_record