cdd-cli 3.2.2 → 4.1.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 (126) hide show
  1. package/README.es.md +222 -0
  2. package/README.md +108 -26
  3. package/dist/App.js +7 -1
  4. package/dist/components/ContainerCreationPrompt.js +26 -10
  5. package/dist/components/ControlsHUD.js +106 -0
  6. package/dist/components/SuggestionPanel.js +16 -7
  7. package/dist/components/UsageMenu.js +1 -1
  8. package/dist/helpers/appState.js +26 -0
  9. package/dist/helpers/constants.js +60 -21
  10. package/dist/helpers/dockerHubService.js +111 -0
  11. package/dist/helpers/dockerService/serviceComponents/containerExec.js +211 -0
  12. package/dist/helpers/logger.js +1 -1
  13. package/dist/hooks/creation/useContainerActions.js +22 -5
  14. package/dist/hooks/creation/useContainerCreation.js +414 -107
  15. package/dist/hooks/useContainerCommandRouter.js +13 -3
  16. package/dist/hooks/useControls.js +28 -7
  17. package/dist/hooks/useShellMode.js +101 -0
  18. package/dist/index.js +10 -1
  19. package/package.json +4 -1
  20. package/.atl/skill-registry.md +0 -30
  21. package/.editorconfig +0 -12
  22. package/.eslintrc.json +0 -30
  23. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -30
  24. package/.github/ISSUE_TEMPLATE/feature_request.md +0 -19
  25. package/.github/PULL_REQUEST_TEMPLATE/pull_request.md +0 -14
  26. package/.github/workflows/ci.yml +0 -32
  27. package/.github/workflows/docs.yml +0 -42
  28. package/.prettierignore +0 -4
  29. package/.prettierrc +0 -8
  30. package/CHANGELOG.md +0 -165
  31. package/CODE_OF_CONDUCT.md +0 -12
  32. package/CONTRIBUTING.md +0 -35
  33. package/SECURITY.md +0 -5
  34. package/__mocks__/ink.cjs +0 -17
  35. package/_config.yml +0 -13
  36. package/babel.config.cjs +0 -23
  37. package/coverage/clover.xml +0 -694
  38. package/coverage/coverage-final.json +0 -21
  39. package/coverage/lcov-report/base.css +0 -224
  40. package/coverage/lcov-report/block-navigation.js +0 -87
  41. package/coverage/lcov-report/components/ContainerCreationPrompt.jsx.html +0 -376
  42. package/coverage/lcov-report/components/PromptField.jsx.html +0 -229
  43. package/coverage/lcov-report/components/SuggestionPanel.jsx.html +0 -244
  44. package/coverage/lcov-report/components/index.html +0 -146
  45. package/coverage/lcov-report/favicon.png +0 -0
  46. package/coverage/lcov-report/helpers/constants.js.html +0 -298
  47. package/coverage/lcov-report/helpers/containerOptionsBuilder.js.html +0 -244
  48. package/coverage/lcov-report/helpers/dockerService/serviceComponents/containerActions.js.html +0 -931
  49. package/coverage/lcov-report/helpers/dockerService/serviceComponents/containerList.js.html +0 -307
  50. package/coverage/lcov-report/helpers/dockerService/serviceComponents/index.html +0 -131
  51. package/coverage/lcov-report/helpers/imageNameUtils.js.html +0 -181
  52. package/coverage/lcov-report/helpers/index.html +0 -191
  53. package/coverage/lcov-report/helpers/logger.js.html +0 -424
  54. package/coverage/lcov-report/helpers/safeCall.js.html +0 -139
  55. package/coverage/lcov-report/helpers/validationHelpers.js.html +0 -346
  56. package/coverage/lcov-report/hooks/creation/index.html +0 -146
  57. package/coverage/lcov-report/hooks/creation/useContainerActions.js.html +0 -313
  58. package/coverage/lcov-report/hooks/creation/useContainerCreation.js.html +0 -805
  59. package/coverage/lcov-report/hooks/creation/useLogsViewer.js.html +0 -238
  60. package/coverage/lcov-report/hooks/debug/index.html +0 -116
  61. package/coverage/lcov-report/hooks/debug/useDebugLogs.js.html +0 -187
  62. package/coverage/lcov-report/hooks/index.html +0 -161
  63. package/coverage/lcov-report/hooks/navigation/index.html +0 -116
  64. package/coverage/lcov-report/hooks/navigation/useContainerSelection.js.html +0 -169
  65. package/coverage/lcov-report/hooks/useContainerCommandRouter.js.html +0 -454
  66. package/coverage/lcov-report/hooks/useControls.js.html +0 -826
  67. package/coverage/lcov-report/hooks/useEraseConfirmation.js.html +0 -202
  68. package/coverage/lcov-report/hooks/useExitHandler.js.html +0 -292
  69. package/coverage/lcov-report/index.html +0 -206
  70. package/coverage/lcov-report/prettify.css +0 -1
  71. package/coverage/lcov-report/prettify.js +0 -2
  72. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  73. package/coverage/lcov-report/sorter.js +0 -210
  74. package/coverage/lcov.info +0 -1402
  75. package/fix-imports.cjs +0 -54
  76. package/jest.config.cjs +0 -14
  77. package/src/App.jsx +0 -96
  78. package/src/components/ContainerCreationPrompt.jsx +0 -97
  79. package/src/components/ContainerList.jsx +0 -32
  80. package/src/components/ContainerRow.jsx +0 -84
  81. package/src/components/ContainerSection.jsx +0 -24
  82. package/src/components/Footer.jsx +0 -15
  83. package/src/components/Header.jsx +0 -41
  84. package/src/components/LogViewer.jsx +0 -36
  85. package/src/components/MessageFeedback.jsx +0 -25
  86. package/src/components/PromptField.jsx +0 -48
  87. package/src/components/StatsBar.jsx +0 -70
  88. package/src/components/SuggestionPanel.jsx +0 -53
  89. package/src/components/UsageMenu.jsx +0 -52
  90. package/src/helpers/appInfo.js +0 -23
  91. package/src/helpers/constants.js +0 -71
  92. package/src/helpers/containerOptionsBuilder.js +0 -53
  93. package/src/helpers/dockerService/dockerService.js +0 -28
  94. package/src/helpers/dockerService/serviceComponents/containerActions.js +0 -282
  95. package/src/helpers/dockerService/serviceComponents/containerList.js +0 -74
  96. package/src/helpers/dockerService/serviceComponents/containerLogs.js +0 -60
  97. package/src/helpers/dockerService/serviceComponents/containerStats.js +0 -69
  98. package/src/helpers/dockerService/serviceComponents/imageUtils.js +0 -32
  99. package/src/helpers/exitWithMessage.js +0 -32
  100. package/src/helpers/imageNameUtils.js +0 -32
  101. package/src/helpers/logger.js +0 -113
  102. package/src/helpers/safeCall.js +0 -18
  103. package/src/helpers/validationHelpers.js +0 -87
  104. package/src/hooks/creation/useContainerActions.js +0 -76
  105. package/src/hooks/creation/useContainerCreation.js +0 -240
  106. package/src/hooks/creation/useLogsViewer.js +0 -51
  107. package/src/hooks/debug/useDebugLogs.js +0 -34
  108. package/src/hooks/navigation/useContainerSelection.js +0 -28
  109. package/src/hooks/useContainerCommandRouter.js +0 -123
  110. package/src/hooks/useContainerStats.js +0 -44
  111. package/src/hooks/useContainers.js +0 -26
  112. package/src/hooks/useControls.js +0 -247
  113. package/src/hooks/useEraseConfirmation.js +0 -39
  114. package/src/hooks/useExitHandler.js +0 -69
  115. package/src/index.js +0 -16
  116. package/test/ContainerCreationPrompt.dom.test.js +0 -68
  117. package/test/SuggestionPanel.dom.test.js +0 -53
  118. package/test/constants.test.js +0 -34
  119. package/test/containerActions.test.js +0 -229
  120. package/test/containerList.test.js +0 -79
  121. package/test/containerOptionsBuilder.test.js +0 -36
  122. package/test/jest.setup.js +0 -7
  123. package/test/safeCall.test.js +0 -25
  124. package/test/useContainerCreation.dom.test.js +0 -264
  125. package/test/useControls.dom.test.js +0 -313
  126. package/test/validationHelpers.test.js +0 -111
@@ -1,694 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1777321045660" clover="3.2.0">
3
- <project timestamp="1777321045660" name="All files">
4
- <metrics statements="607" coveredstatements="410" conditionals="381" coveredconditionals="231" methods="117" coveredmethods="67" elements="1105" coveredelements="708" complexity="0" loc="607" ncloc="607" packages="7" files="20" classes="20"/>
5
- <package name="components">
6
- <metrics statements="19" coveredstatements="18" conditionals="26" coveredconditionals="18" methods="5" coveredmethods="5"/>
7
- <file name="ContainerCreationPrompt.jsx" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/components/ContainerCreationPrompt.jsx">
8
- <metrics statements="6" coveredstatements="6" conditionals="9" coveredconditionals="5" methods="1" coveredmethods="1"/>
9
- <line num="37" count="3" type="stmt"/>
10
- <line num="38" count="3" type="stmt"/>
11
- <line num="60" count="3" type="cond" truecount="1" falsecount="1"/>
12
- <line num="61" count="3" type="cond" truecount="2" falsecount="0"/>
13
- <line num="62" count="3" type="stmt"/>
14
- <line num="83" count="1" type="stmt"/>
15
- </file>
16
- <file name="PromptField.jsx" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/components/PromptField.jsx">
17
- <metrics statements="6" coveredstatements="5" conditionals="8" coveredconditionals="4" methods="2" coveredmethods="2"/>
18
- <line num="17" count="3" type="cond" truecount="2" falsecount="0"/>
19
- <line num="18" count="3" type="stmt"/>
20
- <line num="35" count="3" type="cond" truecount="1" falsecount="1"/>
21
- <line num="36" count="0" type="cond" truecount="0" falsecount="2"/>
22
- <line num="39" count="1" type="stmt"/>
23
- <line num="45" count="1" type="stmt"/>
24
- </file>
25
- <file name="SuggestionPanel.jsx" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/components/SuggestionPanel.jsx">
26
- <metrics statements="7" coveredstatements="7" conditionals="9" coveredconditionals="9" methods="2" coveredmethods="2"/>
27
- <line num="23" count="6" type="cond" truecount="4" falsecount="0"/>
28
- <line num="25" count="5" type="stmt"/>
29
- <line num="27" count="5" type="stmt"/>
30
- <line num="36" count="20" type="stmt"/>
31
- <line num="37" count="20" type="stmt"/>
32
- <line num="38" count="20" type="stmt"/>
33
- <line num="48" count="2" type="stmt"/>
34
- </file>
35
- </package>
36
- <package name="helpers">
37
- <metrics statements="109" coveredstatements="100" conditionals="81" coveredconditionals="68" methods="22" coveredmethods="19"/>
38
- <file name="constants.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/constants.js">
39
- <metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
40
- <line num="6" count="12" type="stmt"/>
41
- <line num="14" count="12" type="stmt"/>
42
- <line num="22" count="12" type="stmt"/>
43
- <line num="27" count="12" type="stmt"/>
44
- <line num="35" count="12" type="stmt"/>
45
- <line num="50" count="12" type="stmt"/>
46
- </file>
47
- <file name="containerOptionsBuilder.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/containerOptionsBuilder.js">
48
- <metrics statements="19" coveredstatements="19" conditionals="18" coveredconditionals="17" methods="4" coveredmethods="4"/>
49
- <line num="22" count="9" type="cond" truecount="2" falsecount="0"/>
50
- <line num="24" count="10" type="stmt"/>
51
- <line num="26" count="9" type="cond" truecount="2" falsecount="0"/>
52
- <line num="28" count="9" type="stmt"/>
53
- <line num="31" count="9" type="stmt"/>
54
- <line num="32" count="9" type="stmt"/>
55
- <line num="34" count="9" type="stmt"/>
56
- <line num="35" count="1" type="stmt"/>
57
- <line num="36" count="1" type="cond" truecount="3" falsecount="1"/>
58
- <line num="37" count="1" type="stmt"/>
59
- <line num="38" count="1" type="stmt"/>
60
- <line num="39" count="1" type="cond" truecount="2" falsecount="0"/>
61
- <line num="40" count="1" type="stmt"/>
62
- <line num="43" count="9" type="stmt"/>
63
- <line num="47" count="9" type="cond" truecount="2" falsecount="0"/>
64
- <line num="48" count="9" type="cond" truecount="2" falsecount="0"/>
65
- <line num="49" count="9" type="cond" truecount="2" falsecount="0"/>
66
- <line num="50" count="9" type="cond" truecount="2" falsecount="0"/>
67
- <line num="52" count="9" type="stmt"/>
68
- </file>
69
- <file name="imageNameUtils.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/imageNameUtils.js">
70
- <metrics statements="9" coveredstatements="9" conditionals="6" coveredconditionals="5" methods="1" coveredmethods="1"/>
71
- <line num="19" count="18" type="cond" truecount="1" falsecount="1"/>
72
- <line num="21" count="18" type="stmt"/>
73
- <line num="22" count="18" type="stmt"/>
74
- <line num="23" count="18" type="cond" truecount="2" falsecount="0"/>
75
- <line num="24" count="2" type="stmt"/>
76
- <line num="27" count="18" type="stmt"/>
77
- <line num="28" count="18" type="cond" truecount="2" falsecount="0"/>
78
- <line num="29" count="9" type="stmt"/>
79
- <line num="31" count="18" type="stmt"/>
80
- </file>
81
- <file name="logger.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/logger.js">
82
- <metrics statements="36" coveredstatements="27" conditionals="24" coveredconditionals="14" methods="11" coveredmethods="8"/>
83
- <line num="5" count="14" type="stmt"/>
84
- <line num="27" count="28" type="cond" truecount="1" falsecount="1"/>
85
- <line num="28" count="28" type="stmt"/>
86
- <line num="30" count="0" type="stmt"/>
87
- <line num="31" count="0" type="cond" truecount="0" falsecount="2"/>
88
- <line num="32" count="0" type="stmt"/>
89
- <line num="34" count="0" type="stmt"/>
90
- <line num="38" count="14" type="cond" truecount="3" falsecount="0"/>
91
- <line num="42" count="14" type="cond" truecount="1" falsecount="1"/>
92
- <line num="44" count="14" type="stmt"/>
93
- <line num="47" count="29" type="stmt"/>
94
- <line num="48" count="29" type="cond" truecount="2" falsecount="0"/>
95
- <line num="52" count="29" type="cond" truecount="2" falsecount="0"/>
96
- <line num="53" count="10" type="stmt"/>
97
- <line num="56" count="19" type="stmt"/>
98
- <line num="57" count="19" type="stmt"/>
99
- <line num="58" count="19" type="stmt"/>
100
- <line num="59" count="19" type="stmt"/>
101
- <line num="62" count="19" type="cond" truecount="1" falsecount="2"/>
102
- <line num="64" count="19" type="cond" truecount="1" falsecount="1"/>
103
- <line num="65" count="19" type="cond" truecount="1" falsecount="1"/>
104
- <line num="66" count="19" type="cond" truecount="1" falsecount="1"/>
105
- <line num="67" count="19" type="stmt"/>
106
- <line num="69" count="0" type="stmt"/>
107
- <line num="73" count="19" type="stmt"/>
108
- <line num="74" count="0" type="stmt"/>
109
- <line num="75" count="0" type="stmt"/>
110
- <line num="87" count="14" type="stmt"/>
111
- <line num="89" count="10" type="stmt"/>
112
- <line num="92" count="18" type="stmt"/>
113
- <line num="95" count="0" type="stmt"/>
114
- <line num="98" count="1" type="stmt"/>
115
- <line num="107" count="16" type="cond" truecount="1" falsecount="1"/>
116
- <line num="108" count="0" type="stmt"/>
117
- <line num="110" count="16" type="stmt"/>
118
- <line num="111" count="16" type="stmt"/>
119
- </file>
120
- <file name="safeCall.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/safeCall.js">
121
- <metrics statements="4" coveredstatements="4" conditionals="2" coveredconditionals="2" methods="1" coveredmethods="1"/>
122
- <line num="11" count="9" type="cond" truecount="2" falsecount="0"/>
123
- <line num="12" count="8" type="stmt"/>
124
- <line num="13" count="8" type="stmt"/>
125
- <line num="15" count="1" type="stmt"/>
126
- </file>
127
- <file name="validationHelpers.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/validationHelpers.js">
128
- <metrics statements="35" coveredstatements="35" conditionals="31" coveredconditionals="30" methods="5" coveredmethods="5"/>
129
- <line num="13" count="6" type="cond" truecount="4" falsecount="0"/>
130
- <line num="14" count="5" type="stmt"/>
131
- <line num="16" count="6" type="stmt"/>
132
- <line num="18" count="5" type="cond" truecount="1" falsecount="1"/>
133
- <line num="19" count="5" type="stmt"/>
134
- <line num="20" count="6" type="stmt"/>
135
- <line num="21" count="6" type="cond" truecount="4" falsecount="0"/>
136
- <line num="23" count="5" type="stmt"/>
137
- <line num="41" count="22" type="cond" truecount="2" falsecount="0"/>
138
- <line num="44" count="22" type="stmt"/>
139
- <line num="45" count="22" type="stmt"/>
140
- <line num="47" count="22" type="cond" truecount="4" falsecount="0"/>
141
- <line num="48" count="14" type="stmt"/>
142
- <line num="50" count="15" type="stmt"/>
143
- <line num="52" count="14" type="stmt"/>
144
- <line num="53" count="15" type="stmt"/>
145
- <line num="54" count="15" type="cond" truecount="2" falsecount="0"/>
146
- <line num="55" count="1" type="stmt"/>
147
- <line num="56" count="1" type="stmt"/>
148
- <line num="58" count="14" type="stmt"/>
149
- <line num="59" count="14" type="stmt"/>
150
- <line num="60" count="14" type="cond" truecount="2" falsecount="0"/>
151
- <line num="61" count="3" type="stmt"/>
152
- <line num="62" count="3" type="stmt"/>
153
- <line num="64" count="11" type="stmt"/>
154
- <line num="68" count="22" type="cond" truecount="2" falsecount="0"/>
155
- <line num="70" count="7" type="stmt"/>
156
- <line num="74" count="15" type="stmt"/>
157
- <line num="75" count="15" type="stmt"/>
158
- <line num="76" count="15" type="stmt"/>
159
- <line num="78" count="15" type="cond" truecount="5" falsecount="0"/>
160
- <line num="79" count="6" type="stmt"/>
161
- <line num="80" count="6" type="cond" truecount="4" falsecount="0"/>
162
- <line num="81" count="3" type="stmt"/>
163
- <line num="86" count="15" type="stmt"/>
164
- </file>
165
- </package>
166
- <package name="helpers.dockerService.serviceComponents">
167
- <metrics statements="147" coveredstatements="105" conditionals="81" coveredconditionals="52" methods="23" coveredmethods="16"/>
168
- <file name="containerActions.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/dockerService/serviceComponents/containerActions.js">
169
- <metrics statements="118" coveredstatements="85" conditionals="62" coveredconditionals="38" methods="15" coveredmethods="12"/>
170
- <line num="17" count="29" type="stmt"/>
171
- <line num="20" count="29" type="stmt"/>
172
- <line num="33" count="1" type="stmt"/>
173
- <line num="34" count="1" type="stmt"/>
174
- <line num="35" count="1" type="stmt"/>
175
- <line num="36" count="1" type="stmt"/>
176
- <line num="37" count="1" type="stmt"/>
177
- <line num="39" count="0" type="stmt"/>
178
- <line num="40" count="0" type="stmt"/>
179
- <line num="58" count="6" type="stmt"/>
180
- <line num="60" count="6" type="stmt"/>
181
- <line num="61" count="6" type="stmt"/>
182
- <line num="63" count="0" type="stmt"/>
183
- <line num="64" count="0" type="stmt"/>
184
- <line num="66" count="6" type="cond" truecount="2" falsecount="0"/>
185
- <line num="67" count="1" type="stmt"/>
186
- <line num="68" count="1" type="stmt"/>
187
- <line num="69" count="1" type="stmt"/>
188
- <line num="70" count="1" type="stmt"/>
189
- <line num="72" count="0" type="stmt"/>
190
- <line num="73" count="0" type="stmt"/>
191
- <line num="76" count="6" type="stmt"/>
192
- <line num="82" count="6" type="stmt"/>
193
- <line num="87" count="6" type="stmt"/>
194
- <line num="89" count="6" type="cond" truecount="1" falsecount="1"/>
195
- <line num="90" count="6" type="stmt"/>
196
- <line num="91" count="6" type="stmt"/>
197
- <line num="92" count="6" type="cond" truecount="3" falsecount="1"/>
198
- <line num="93" count="6" type="stmt"/>
199
- <line num="94" count="6" type="cond" truecount="1" falsecount="1"/>
200
- <line num="95" count="6" type="stmt"/>
201
- <line num="96" count="6" type="stmt"/>
202
- <line num="100" count="6" type="stmt"/>
203
- <line num="101" count="1" type="cond" truecount="1" falsecount="1"/>
204
- <line num="102" count="1" type="cond" truecount="3" falsecount="1"/>
205
- <line num="103" count="1" type="stmt"/>
206
- <line num="108" count="0" type="stmt"/>
207
- <line num="114" count="6" type="stmt"/>
208
- <line num="115" count="4" type="stmt"/>
209
- <line num="116" count="4" type="stmt"/>
210
- <line num="118" count="6" type="stmt"/>
211
- <line num="119" count="4" type="stmt"/>
212
- <line num="120" count="4" type="cond" truecount="1" falsecount="1"/>
213
- <line num="121" count="0" type="cond" truecount="0" falsecount="2"/>
214
- <line num="122" count="0" type="stmt"/>
215
- <line num="123" count="0" type="stmt"/>
216
- <line num="125" count="0" type="stmt"/>
217
- <line num="126" count="0" type="stmt"/>
218
- <line num="127" count="0" type="stmt"/>
219
- <line num="128" count="0" type="stmt"/>
220
- <line num="129" count="0" type="stmt"/>
221
- <line num="131" count="0" type="stmt"/>
222
- <line num="132" count="0" type="stmt"/>
223
- <line num="134" count="4" type="stmt"/>
224
- <line num="135" count="4" type="stmt"/>
225
- <line num="136" count="1" type="stmt"/>
226
- <line num="138" count="4" type="stmt"/>
227
- <line num="139" count="4" type="stmt"/>
228
- <line num="142" count="6" type="stmt"/>
229
- <line num="147" count="6" type="cond" truecount="1" falsecount="2"/>
230
- <line num="150" count="6" type="cond" truecount="1" falsecount="1"/>
231
- <line num="153" count="6" type="cond" truecount="2" falsecount="0"/>
232
- <line num="154" count="3" type="stmt"/>
233
- <line num="155" count="3" type="stmt"/>
234
- <line num="156" count="3" type="cond" truecount="4" falsecount="0"/>
235
- <line num="157" count="1" type="stmt"/>
236
- <line num="158" count="1" type="stmt"/>
237
- <line num="159" count="1" type="stmt"/>
238
- <line num="163" count="6" type="cond" truecount="2" falsecount="0"/>
239
- <line num="164" count="4" type="cond" truecount="2" falsecount="0"/>
240
- <line num="165" count="4" type="cond" truecount="2" falsecount="0"/>
241
- <line num="166" count="4" type="stmt"/>
242
- <line num="169" count="4" type="stmt"/>
243
- <line num="170" count="4" type="cond" truecount="1" falsecount="1"/>
244
- <line num="171" count="4" type="cond" truecount="1" falsecount="1"/>
245
- <line num="173" count="4" type="cond" truecount="1" falsecount="1"/>
246
- <line num="177" count="4" type="stmt"/>
247
- <line num="178" count="4" type="stmt"/>
248
- <line num="179" count="4" type="cond" truecount="1" falsecount="1"/>
249
- <line num="180" count="4" type="stmt"/>
250
- <line num="181" count="4" type="stmt"/>
251
- <line num="184" count="4" type="stmt"/>
252
- <line num="195" count="0" type="stmt"/>
253
- <line num="203" count="0" type="cond" truecount="0" falsecount="2"/>
254
- <line num="204" count="0" type="stmt"/>
255
- <line num="205" count="0" type="stmt"/>
256
- <line num="206" count="0" type="stmt"/>
257
- <line num="207" count="0" type="cond" truecount="0" falsecount="2"/>
258
- <line num="208" count="0" type="cond" truecount="0" falsecount="2"/>
259
- <line num="209" count="0" type="stmt"/>
260
- <line num="219" count="6" type="stmt"/>
261
- <line num="220" count="6" type="stmt"/>
262
- <line num="224" count="6" type="cond" truecount="2" falsecount="0"/>
263
- <line num="225" count="6" type="stmt"/>
264
- <line num="226" count="6" type="stmt"/>
265
- <line num="228" count="0" type="stmt"/>
266
- <line num="229" count="0" type="stmt"/>
267
- <line num="239" count="1" type="stmt"/>
268
- <line num="240" count="1" type="stmt"/>
269
- <line num="241" count="1" type="stmt"/>
270
- <line num="242" count="1" type="stmt"/>
271
- <line num="243" count="1" type="stmt"/>
272
- <line num="245" count="0" type="stmt"/>
273
- <line num="246" count="0" type="stmt"/>
274
- <line num="256" count="1" type="stmt"/>
275
- <line num="257" count="1" type="stmt"/>
276
- <line num="258" count="1" type="stmt"/>
277
- <line num="259" count="1" type="stmt"/>
278
- <line num="260" count="1" type="stmt"/>
279
- <line num="262" count="0" type="stmt"/>
280
- <line num="263" count="0" type="stmt"/>
281
- <line num="273" count="1" type="stmt"/>
282
- <line num="274" count="1" type="stmt"/>
283
- <line num="275" count="1" type="stmt"/>
284
- <line num="276" count="1" type="stmt"/>
285
- <line num="277" count="1" type="stmt"/>
286
- <line num="279" count="0" type="stmt"/>
287
- <line num="280" count="0" type="stmt"/>
288
- </file>
289
- <file name="containerList.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/dockerService/serviceComponents/containerList.js">
290
- <metrics statements="29" coveredstatements="20" conditionals="19" coveredconditionals="14" methods="8" coveredmethods="4"/>
291
- <line num="4" count="3" type="stmt"/>
292
- <line num="13" count="3" type="stmt"/>
293
- <line num="16" count="3" type="cond" truecount="2" falsecount="0"/>
294
- <line num="21" count="1" type="stmt"/>
295
- <line num="22" count="2" type="cond" truecount="2" falsecount="2"/>
296
- <line num="23" count="0" type="stmt"/>
297
- <line num="24" count="2" type="cond" truecount="2" falsecount="0"/>
298
- <line num="28" count="1" type="stmt"/>
299
- <line num="30" count="1" type="stmt"/>
300
- <line num="33" count="3" type="cond" truecount="1" falsecount="1"/>
301
- <line num="34" count="0" type="stmt"/>
302
- <line num="37" count="3" type="stmt"/>
303
- <line num="38" count="3" type="cond" truecount="1" falsecount="1"/>
304
- <line num="46" count="3" type="stmt"/>
305
- <line num="47" count="3" type="stmt"/>
306
- <line num="48" count="3" type="stmt"/>
307
- <line num="49" count="3" type="stmt"/>
308
- <line num="50" count="3" type="stmt"/>
309
- <line num="57" count="3" type="stmt"/>
310
- <line num="58" count="0" type="stmt"/>
311
- <line num="59" count="0" type="stmt"/>
312
- <line num="60" count="3" type="cond" truecount="1" falsecount="1"/>
313
- <line num="61" count="0" type="stmt"/>
314
- <line num="64" count="3" type="stmt"/>
315
- <line num="65" count="0" type="stmt"/>
316
- <line num="66" count="0" type="stmt"/>
317
- <line num="67" count="3" type="stmt"/>
318
- <line num="71" count="0" type="stmt"/>
319
- <line num="72" count="0" type="stmt"/>
320
- </file>
321
- </package>
322
- <package name="hooks">
323
- <metrics statements="168" coveredstatements="82" conditionals="121" coveredconditionals="53" methods="38" coveredmethods="11"/>
324
- <file name="useContainerCommandRouter.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/useContainerCommandRouter.js">
325
- <metrics statements="36" coveredstatements="12" conditionals="26" coveredconditionals="6" methods="7" coveredmethods="2"/>
326
- <line num="39" count="84" type="stmt"/>
327
- <line num="41" count="8" type="stmt"/>
328
- <line num="43" count="8" type="cond" truecount="1" falsecount="1"/>
329
- <line num="44" count="0" type="stmt"/>
330
- <line num="45" count="0" type="stmt"/>
331
- <line num="49" count="0" type="cond" truecount="0" falsecount="3"/>
332
- <line num="52" count="0" type="stmt"/>
333
- <line num="55" count="8" type="cond" truecount="1" falsecount="1"/>
334
- <line num="56" count="0" type="stmt"/>
335
- <line num="57" count="0" type="stmt"/>
336
- <line num="61" count="0" type="cond" truecount="0" falsecount="5"/>
337
- <line num="67" count="0" type="stmt"/>
338
- <line num="70" count="8" type="cond" truecount="1" falsecount="1"/>
339
- <line num="71" count="0" type="stmt"/>
340
- <line num="72" count="0" type="stmt"/>
341
- <line num="76" count="0" type="stmt"/>
342
- <line num="79" count="8" type="cond" truecount="1" falsecount="1"/>
343
- <line num="80" count="0" type="cond" truecount="0" falsecount="2"/>
344
- <line num="81" count="0" type="stmt"/>
345
- <line num="83" count="0" type="stmt"/>
346
- <line num="84" count="0" type="stmt"/>
347
- <line num="87" count="8" type="cond" truecount="1" falsecount="1"/>
348
- <line num="88" count="0" type="cond" truecount="0" falsecount="2"/>
349
- <line num="89" count="0" type="stmt"/>
350
- <line num="91" count="0" type="stmt"/>
351
- <line num="92" count="0" type="stmt"/>
352
- <line num="93" count="0" type="stmt"/>
353
- <line num="96" count="8" type="cond" truecount="1" falsecount="1"/>
354
- <line num="97" count="8" type="stmt"/>
355
- <line num="98" count="8" type="stmt"/>
356
- <line num="99" count="8" type="stmt"/>
357
- <line num="102" count="0" type="cond" truecount="0" falsecount="2"/>
358
- <line num="103" count="0" type="stmt"/>
359
- <line num="104" count="0" type="stmt"/>
360
- <line num="107" count="0" type="stmt"/>
361
- <line num="122" count="84" type="stmt"/>
362
- </file>
363
- <file name="useControls.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/useControls.js">
364
- <metrics statements="101" coveredstatements="61" conditionals="75" coveredconditionals="46" methods="23" coveredmethods="6"/>
365
- <line num="25" count="84" type="stmt"/>
366
- <line num="28" count="84" type="stmt"/>
367
- <line num="30" count="84" type="stmt"/>
368
- <line num="32" count="4" type="stmt"/>
369
- <line num="38" count="4" type="stmt"/>
370
- <line num="39" count="4" type="stmt"/>
371
- <line num="40" count="4" type="stmt"/>
372
- <line num="41" count="4" type="stmt"/>
373
- <line num="42" count="3" type="stmt"/>
374
- <line num="43" count="3" type="cond" truecount="4" falsecount="0"/>
375
- <line num="44" count="2" type="stmt"/>
376
- <line num="47" count="3" type="stmt"/>
377
- <line num="50" count="3" type="stmt"/>
378
- <line num="51" count="3" type="stmt"/>
379
- <line num="53" count="1" type="stmt"/>
380
- <line num="54" count="1" type="stmt"/>
381
- <line num="56" count="4" type="stmt"/>
382
- <line num="59" count="0" type="stmt"/>
383
- <line num="63" count="84" type="stmt"/>
384
- <line num="64" count="84" type="stmt"/>
385
- <line num="65" count="84" type="stmt"/>
386
- <line num="67" count="84" type="stmt"/>
387
- <line num="69" count="0" type="stmt"/>
388
- <line num="70" count="0" type="stmt"/>
389
- <line num="74" count="0" type="stmt"/>
390
- <line num="77" count="0" type="stmt"/>
391
- <line num="78" count="0" type="stmt"/>
392
- <line num="86" count="84" type="stmt"/>
393
- <line num="88" count="0" type="stmt"/>
394
- <line num="91" count="0" type="stmt"/>
395
- <line num="92" count="0" type="stmt"/>
396
- <line num="93" count="0" type="stmt"/>
397
- <line num="97" count="0" type="stmt"/>
398
- <line num="103" count="84" type="stmt"/>
399
- <line num="111" count="0" type="stmt"/>
400
- <line num="112" count="0" type="stmt"/>
401
- <line num="115" count="0" type="stmt"/>
402
- <line num="117" count="0" type="stmt"/>
403
- <line num="118" count="8" type="stmt"/>
404
- <line num="121" count="84" type="stmt"/>
405
- <line num="123" count="0" type="stmt"/>
406
- <line num="124" count="0" type="stmt"/>
407
- <line num="125" count="0" type="stmt"/>
408
- <line num="126" count="0" type="stmt"/>
409
- <line num="133" count="84" type="stmt"/>
410
- <line num="135" count="22" type="stmt"/>
411
- <line num="137" count="22" type="stmt"/>
412
- <line num="138" count="0" type="cond" truecount="0" falsecount="2"/>
413
- <line num="139" count="22" type="cond" truecount="0" falsecount="2"/>
414
- <line num="141" count="22" type="cond" truecount="1" falsecount="1"/>
415
- <line num="142" count="0" type="stmt"/>
416
- <line num="143" count="0" type="stmt"/>
417
- <line num="144" count="0" type="stmt"/>
418
- <line num="147" count="22" type="cond" truecount="4" falsecount="0"/>
419
- <line num="149" count="5" type="cond" truecount="4" falsecount="0"/>
420
- <line num="150" count="2" type="stmt"/>
421
- <line num="151" count="2" type="stmt"/>
422
- <line num="153" count="3" type="stmt"/>
423
- <line num="154" count="3" type="stmt"/>
424
- <line num="158" count="17" type="cond" truecount="4" falsecount="0"/>
425
- <line num="159" count="8" type="cond" truecount="2" falsecount="0"/>
426
- <line num="160" count="1" type="stmt"/>
427
- <line num="161" count="1" type="stmt"/>
428
- <line num="163" count="7" type="cond" truecount="2" falsecount="0"/>
429
- <line num="164" count="5" type="stmt"/>
430
- <line num="165" count="5" type="stmt"/>
431
- <line num="169" count="11" type="cond" truecount="3" falsecount="1"/>
432
- <line num="170" count="0" type="cond" truecount="0" falsecount="2"/>
433
- <line num="171" count="0" type="cond" truecount="0" falsecount="2"/>
434
- <line num="172" count="0" type="stmt"/>
435
- <line num="174" count="0" type="cond" truecount="0" falsecount="2"/>
436
- <line num="175" count="0" type="cond" truecount="0" falsecount="2"/>
437
- <line num="176" count="0" type="cond" truecount="0" falsecount="2"/>
438
- <line num="177" count="0" type="stmt"/>
439
- <line num="180" count="11" type="cond" truecount="6" falsecount="0"/>
440
- <line num="181" count="9" type="cond" truecount="1" falsecount="1"/>
441
- <line num="182" count="9" type="cond" truecount="2" falsecount="0"/>
442
- <line num="184" count="9" type="cond" truecount="1" falsecount="1"/>
443
- <line num="185" count="0" type="stmt"/>
444
- <line num="186" count="9" type="cond" truecount="1" falsecount="1"/>
445
- <line num="187" count="0" type="stmt"/>
446
- <line num="188" count="9" type="cond" truecount="1" falsecount="1"/>
447
- <line num="189" count="0" type="stmt"/>
448
- <line num="196" count="84" type="stmt"/>
449
- <line num="197" count="30" type="cond" truecount="1" falsecount="1"/>
450
- <line num="198" count="0" type="stmt"/>
451
- <line num="199" count="0" type="stmt"/>
452
- <line num="202" count="30" type="cond" truecount="1" falsecount="1"/>
453
- <line num="203" count="0" type="cond" truecount="0" falsecount="4"/>
454
- <line num="204" count="0" type="stmt"/>
455
- <line num="206" count="0" type="stmt"/>
456
- <line num="209" count="30" type="cond" truecount="2" falsecount="0"/>
457
- <line num="210" count="22" type="stmt"/>
458
- <line num="211" count="22" type="stmt"/>
459
- <line num="214" count="8" type="cond" truecount="2" falsecount="2"/>
460
- <line num="215" count="0" type="stmt"/>
461
- <line num="216" count="0" type="stmt"/>
462
- <line num="219" count="8" type="stmt"/>
463
- <line num="220" count="8" type="stmt"/>
464
- <line num="221" count="8" type="stmt"/>
465
- <line num="224" count="84" type="stmt"/>
466
- </file>
467
- <file name="useEraseConfirmation.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/useEraseConfirmation.js">
468
- <metrics statements="13" coveredstatements="4" conditionals="9" coveredconditionals="0" methods="3" coveredmethods="1"/>
469
- <line num="15" count="84" type="stmt"/>
470
- <line num="17" count="84" type="stmt"/>
471
- <line num="18" count="0" type="stmt"/>
472
- <line num="21" count="84" type="stmt"/>
473
- <line num="23" count="0" type="cond" truecount="0" falsecount="4"/>
474
- <line num="24" count="0" type="stmt"/>
475
- <line num="25" count="0" type="stmt"/>
476
- <line num="26" count="0" type="stmt"/>
477
- <line num="29" count="0" type="cond" truecount="0" falsecount="5"/>
478
- <line num="30" count="0" type="stmt"/>
479
- <line num="31" count="0" type="stmt"/>
480
- <line num="32" count="0" type="stmt"/>
481
- <line num="38" count="84" type="stmt"/>
482
- </file>
483
- <file name="useExitHandler.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/useExitHandler.js">
484
- <metrics statements="18" coveredstatements="5" conditionals="11" coveredconditionals="1" methods="5" coveredmethods="2"/>
485
- <line num="20" count="84" type="stmt"/>
486
- <line num="33" count="84" type="stmt"/>
487
- <line num="35" count="8" type="cond" truecount="1" falsecount="1"/>
488
- <line num="36" count="8" type="stmt"/>
489
- <line num="39" count="0" type="cond" truecount="0" falsecount="2"/>
490
- <line num="40" count="0" type="stmt"/>
491
- <line num="43" count="0" type="stmt"/>
492
- <line num="44" count="0" type="stmt"/>
493
- <line num="45" count="0" type="cond" truecount="0" falsecount="4"/>
494
- <line num="46" count="0" type="stmt"/>
495
- <line num="48" count="0" type="stmt"/>
496
- <line num="55" count="0" type="stmt"/>
497
- <line num="56" count="0" type="stmt"/>
498
- <line num="57" count="0" type="stmt"/>
499
- <line num="58" count="0" type="cond" truecount="0" falsecount="2"/>
500
- <line num="59" count="0" type="stmt"/>
501
- <line num="63" count="0" type="stmt"/>
502
- <line num="68" count="84" type="stmt"/>
503
- </file>
504
- </package>
505
- <package name="hooks.creation">
506
- <metrics statements="135" coveredstatements="94" conditionals="52" coveredconditionals="39" methods="20" coveredmethods="12"/>
507
- <file name="useContainerActions.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/creation/useContainerActions.js">
508
- <metrics statements="24" coveredstatements="3" conditionals="6" coveredconditionals="0" methods="6" coveredmethods="1"/>
509
- <line num="20" count="84" type="stmt"/>
510
- <line num="21" count="84" type="stmt"/>
511
- <line num="31" count="0" type="stmt"/>
512
- <line num="32" count="0" type="cond" truecount="0" falsecount="2"/>
513
- <line num="33" count="0" type="cond" truecount="0" falsecount="2"/>
514
- <line num="34" count="0" type="stmt"/>
515
- <line num="35" count="0" type="cond" truecount="0" falsecount="2"/>
516
- <line num="36" count="0" type="stmt"/>
517
- <line num="37" count="0" type="stmt"/>
518
- <line num="38" count="0" type="stmt"/>
519
- <line num="41" count="0" type="stmt"/>
520
- <line num="42" count="0" type="stmt"/>
521
- <line num="43" count="0" type="stmt"/>
522
- <line num="44" count="0" type="stmt"/>
523
- <line num="45" count="0" type="stmt"/>
524
- <line num="46" count="0" type="stmt"/>
525
- <line num="47" count="0" type="stmt"/>
526
- <line num="49" count="0" type="stmt"/>
527
- <line num="52" count="0" type="stmt"/>
528
- <line num="56" count="84" type="stmt"/>
529
- <line num="64" count="0" type="stmt"/>
530
- <line num="67" count="0" type="stmt"/>
531
- <line num="70" count="0" type="stmt"/>
532
- <line num="73" count="0" type="stmt"/>
533
- </file>
534
- <file name="useContainerCreation.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/creation/useContainerCreation.js">
535
- <metrics statements="100" coveredstatements="87" conditionals="44" coveredconditionals="39" methods="11" coveredmethods="10"/>
536
- <line num="9" count="2" type="stmt"/>
537
- <line num="28" count="165" type="stmt"/>
538
- <line num="29" count="165" type="stmt"/>
539
- <line num="30" count="165" type="stmt"/>
540
- <line num="31" count="165" type="stmt"/>
541
- <line num="32" count="165" type="stmt"/>
542
- <line num="33" count="165" type="stmt"/>
543
- <line num="34" count="165" type="stmt"/>
544
- <line num="37" count="165" type="stmt"/>
545
- <line num="38" count="165" type="stmt"/>
546
- <line num="39" count="165" type="stmt"/>
547
- <line num="48" count="22" type="stmt"/>
548
- <line num="49" count="22" type="stmt"/>
549
- <line num="50" count="22" type="stmt"/>
550
- <line num="51" count="22" type="cond" truecount="2" falsecount="0"/>
551
- <line num="52" count="1" type="stmt"/>
552
- <line num="53" count="1" type="stmt"/>
553
- <line num="55" count="21" type="stmt"/>
554
- <line num="56" count="21" type="stmt"/>
555
- <line num="57" count="420" type="stmt"/>
556
- <line num="59" count="21" type="stmt"/>
557
- <line num="70" count="23" type="stmt"/>
558
- <line num="71" count="23" type="stmt"/>
559
- <line num="73" count="23" type="stmt"/>
560
- <line num="74" count="23" type="cond" truecount="2" falsecount="0"/>
561
- <line num="75" count="22" type="cond" truecount="2" falsecount="0"/>
562
- <line num="76" count="21" type="stmt"/>
563
- <line num="78" count="23" type="stmt"/>
564
- <line num="87" count="7" type="cond" truecount="3" falsecount="1"/>
565
- <line num="88" count="7" type="stmt"/>
566
- <line num="89" count="7" type="stmt"/>
567
- <line num="90" count="7" type="stmt"/>
568
- <line num="91" count="7" type="stmt"/>
569
- <line num="92" count="7" type="stmt"/>
570
- <line num="99" count="39" type="cond" truecount="2" falsecount="0"/>
571
- <line num="100" count="14" type="cond" truecount="2" falsecount="0"/>
572
- <line num="101" count="1" type="stmt"/>
573
- <line num="102" count="1" type="stmt"/>
574
- <line num="103" count="1" type="stmt"/>
575
- <line num="105" count="13" type="stmt"/>
576
- <line num="106" count="13" type="stmt"/>
577
- <line num="109" count="13" type="stmt"/>
578
- <line num="110" count="13" type="stmt"/>
579
- <line num="112" count="25" type="cond" truecount="2" falsecount="0"/>
580
- <line num="113" count="9" type="stmt"/>
581
- <line num="114" count="9" type="stmt"/>
582
- <line num="117" count="9" type="stmt"/>
583
- <line num="118" count="9" type="stmt"/>
584
- <line num="120" count="16" type="cond" truecount="2" falsecount="0"/>
585
- <line num="122" count="9" type="cond" truecount="4" falsecount="0"/>
586
- <line num="123" count="1" type="stmt"/>
587
- <line num="126" count="1" type="stmt"/>
588
- <line num="127" count="1" type="stmt"/>
589
- <line num="129" count="8" type="stmt"/>
590
- <line num="130" count="8" type="stmt"/>
591
- <line num="131" count="24" type="stmt"/>
592
- <line num="134" count="8" type="stmt"/>
593
- <line num="140" count="8" type="stmt"/>
594
- <line num="141" count="8" type="cond" truecount="5" falsecount="0"/>
595
- <line num="143" count="3" type="cond" truecount="3" falsecount="1"/>
596
- <line num="146" count="3" type="stmt"/>
597
- <line num="149" count="3" type="stmt"/>
598
- <line num="150" count="5" type="cond" truecount="5" falsecount="0"/>
599
- <line num="151" count="1" type="stmt"/>
600
- <line num="154" count="1" type="stmt"/>
601
- <line num="155" count="4" type="cond" truecount="1" falsecount="1"/>
602
- <line num="156" count="0" type="stmt"/>
603
- <line num="159" count="0" type="stmt"/>
604
- <line num="161" count="4" type="stmt"/>
605
- <line num="164" count="4" type="stmt"/>
606
- <line num="166" count="8" type="stmt"/>
607
- <line num="168" count="7" type="cond" truecount="1" falsecount="1"/>
608
- <line num="170" count="7" type="stmt"/>
609
- <line num="171" count="7" type="cond" truecount="2" falsecount="0"/>
610
- <line num="172" count="1" type="stmt"/>
611
- <line num="173" count="1" type="stmt"/>
612
- <line num="174" count="1" type="stmt"/>
613
- <line num="177" count="6" type="stmt"/>
614
- <line num="185" count="0" type="stmt"/>
615
- <line num="186" count="0" type="stmt"/>
616
- <line num="187" count="0" type="stmt"/>
617
- <line num="188" count="0" type="stmt"/>
618
- <line num="189" count="0" type="stmt"/>
619
- <line num="190" count="0" type="stmt"/>
620
- <line num="191" count="0" type="stmt"/>
621
- <line num="192" count="0" type="stmt"/>
622
- <line num="193" count="0" type="stmt"/>
623
- <line num="194" count="0" type="stmt"/>
624
- <line num="195" count="0" type="stmt"/>
625
- <line num="203" count="8" type="stmt"/>
626
- <line num="204" count="8" type="stmt"/>
627
- <line num="205" count="8" type="stmt"/>
628
- <line num="206" count="8" type="stmt"/>
629
- <line num="207" count="8" type="stmt"/>
630
- <line num="208" count="8" type="stmt"/>
631
- <line num="209" count="8" type="stmt"/>
632
- <line num="210" count="8" type="stmt"/>
633
- <line num="211" count="8" type="stmt"/>
634
- <line num="212" count="8" type="stmt"/>
635
- <line num="215" count="165" type="stmt"/>
636
- </file>
637
- <file name="useLogsViewer.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/creation/useLogsViewer.js">
638
- <metrics statements="11" coveredstatements="4" conditionals="2" coveredconditionals="0" methods="3" coveredmethods="1"/>
639
- <line num="18" count="84" type="stmt"/>
640
- <line num="19" count="84" type="stmt"/>
641
- <line num="20" count="84" type="stmt"/>
642
- <line num="26" count="0" type="stmt"/>
643
- <line num="27" count="0" type="stmt"/>
644
- <line num="34" count="0" type="stmt"/>
645
- <line num="35" count="0" type="stmt"/>
646
- <line num="36" count="0" type="cond" truecount="0" falsecount="2"/>
647
- <line num="37" count="0" type="stmt"/>
648
- <line num="38" count="0" type="stmt"/>
649
- <line num="42" count="84" type="stmt"/>
650
- </file>
651
- </package>
652
- <package name="hooks.debug">
653
- <metrics statements="17" coveredstatements="6" conditionals="10" coveredconditionals="0" methods="5" coveredmethods="2"/>
654
- <file name="useDebugLogs.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/debug/useDebugLogs.js">
655
- <metrics statements="17" coveredstatements="6" conditionals="10" coveredconditionals="0" methods="5" coveredmethods="2"/>
656
- <line num="5" count="84" type="stmt"/>
657
- <line num="6" count="84" type="stmt"/>
658
- <line num="8" count="84" type="stmt"/>
659
- <line num="9" count="16" type="stmt"/>
660
- <line num="10" count="0" type="stmt"/>
661
- <line num="11" count="0" type="cond" truecount="0" falsecount="2"/>
662
- <line num="13" count="0" type="cond" truecount="0" falsecount="2"/>
663
- <line num="14" count="0" type="cond" truecount="0" falsecount="4"/>
664
- <line num="15" count="0" type="stmt"/>
665
- <line num="16" count="0" type="stmt"/>
666
- <line num="17" count="0" type="stmt"/>
667
- <line num="19" count="0" type="stmt"/>
668
- <line num="23" count="0" type="cond" truecount="0" falsecount="2"/>
669
- <line num="26" count="0" type="stmt"/>
670
- <line num="27" count="0" type="stmt"/>
671
- <line num="30" count="16" type="stmt"/>
672
- <line num="33" count="84" type="stmt"/>
673
- </file>
674
- </package>
675
- <package name="hooks.navigation">
676
- <metrics statements="12" coveredstatements="5" conditionals="10" coveredconditionals="1" methods="4" coveredmethods="2"/>
677
- <file name="useContainerSelection.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/navigation/useContainerSelection.js">
678
- <metrics statements="12" coveredstatements="5" conditionals="10" coveredconditionals="1" methods="4" coveredmethods="2"/>
679
- <line num="4" count="84" type="stmt"/>
680
- <line num="6" count="84" type="stmt"/>
681
- <line num="8" count="8" type="cond" truecount="1" falsecount="1"/>
682
- <line num="9" count="8" type="stmt"/>
683
- <line num="12" count="0" type="cond" truecount="0" falsecount="2"/>
684
- <line num="13" count="0" type="cond" truecount="0" falsecount="2"/>
685
- <line num="14" count="0" type="stmt"/>
686
- <line num="17" count="0" type="cond" truecount="0" falsecount="2"/>
687
- <line num="18" count="0" type="cond" truecount="0" falsecount="2"/>
688
- <line num="19" count="0" type="stmt"/>
689
- <line num="22" count="0" type="stmt"/>
690
- <line num="27" count="84" type="stmt"/>
691
- </file>
692
- </package>
693
- </project>
694
- </coverage>