@zohodesk/client_build_tool 0.0.5-exp.8 → 0.0.6

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 (48) hide show
  1. package/CHANGELOG.md +13 -5
  2. package/README.md +13 -5
  3. package/coverage/addFilesNamesToManifestJson.js.html +148 -0
  4. package/coverage/base.css +224 -0
  5. package/coverage/block-navigation.js +87 -0
  6. package/coverage/bundler/webpack/custom_plugins/AddManifestJson/addFilesNamesToManifestJson.js.html +148 -0
  7. package/coverage/bundler/webpack/custom_plugins/AddManifestJson/createInitialEntries.js.html +136 -0
  8. package/coverage/bundler/webpack/custom_plugins/AddManifestJson/createManifestJson.js.html +181 -0
  9. package/coverage/bundler/webpack/custom_plugins/AddManifestJson/findInitialFileNames.js.html +133 -0
  10. package/coverage/bundler/webpack/custom_plugins/AddManifestJson/index.html +146 -0
  11. package/coverage/bundler/webpack/custom_plugins/AddManifestJson/index.js.html +199 -0
  12. package/coverage/bundler/webpack/custom_plugins/AddManifestJson/removeHashFromFileName.js.html +127 -0
  13. package/coverage/bundler/webpack/custom_plugins/VariableConversionCollector/ErrorHandler.js.html +346 -0
  14. package/coverage/bundler/webpack/custom_plugins/VariableConversionCollector/index.html +116 -0
  15. package/coverage/bundler/webpack/custom_postcss_plugins/HoverActivePlugin/constants.js.html +94 -0
  16. package/coverage/bundler/webpack/custom_postcss_plugins/HoverActivePlugin/handleIgnores.js.html +259 -0
  17. package/coverage/bundler/webpack/custom_postcss_plugins/HoverActivePlugin/index.html +236 -0
  18. package/coverage/bundler/webpack/custom_postcss_plugins/HoverActivePlugin/index.js.html +442 -0
  19. package/coverage/bundler/webpack/custom_postcss_plugins/HoverActivePlugin/insertBefore.js.html +154 -0
  20. package/coverage/bundler/webpack/custom_postcss_plugins/HoverActivePlugin/isPreviouslyProcessed.js.html +142 -0
  21. package/coverage/bundler/webpack/custom_postcss_plugins/HoverActivePlugin/replaceUtils.js.html +127 -0
  22. package/coverage/bundler/webpack/custom_postcss_plugins/HoverActivePlugin/separateHoveredSelectorAndNormalSelector.js.html +139 -0
  23. package/coverage/bundler/webpack/custom_postcss_plugins/HoverActivePlugin/specialCases.js.html +184 -0
  24. package/coverage/bundler/webpack/custom_postcss_plugins/HoverActivePlugin/typeCheckUtils.js.html +193 -0
  25. package/coverage/bundler/webpack/custom_postcss_plugins/SelectorReplace.js.html +292 -0
  26. package/coverage/bundler/webpack/custom_postcss_plugins/ValueReplacer.js.html +223 -0
  27. package/coverage/bundler/webpack/custom_postcss_plugins/VariableModificationPlugin/index.html +116 -0
  28. package/coverage/bundler/webpack/custom_postcss_plugins/VariableModificationPlugin/index.js.html +1126 -0
  29. package/coverage/bundler/webpack/custom_postcss_plugins/index.html +131 -0
  30. package/coverage/bundler/webpack/loaderConfigs/getSpecificPostCssPlugin.js.html +247 -0
  31. package/coverage/bundler/webpack/loaderConfigs/index.html +116 -0
  32. package/coverage/coverage-final.json +4 -0
  33. package/coverage/coverage-summary.json +5 -0
  34. package/coverage/createInitialEntries.js.html +136 -0
  35. package/coverage/dummy.js.html +238 -0
  36. package/coverage/favicon.png +0 -0
  37. package/coverage/index.html +146 -0
  38. package/coverage/index.js.html +169 -0
  39. package/coverage/isObject.js.html +94 -0
  40. package/coverage/isValid.js.html +106 -0
  41. package/coverage/prettify.css +1 -0
  42. package/coverage/prettify.js +2 -0
  43. package/coverage/removeHashFromFileName.js.html +127 -0
  44. package/coverage/sort-arrow-sprite.png +0 -0
  45. package/coverage/sorter.js +196 -0
  46. package/package.json +1 -1
  47. package/result.json +1 -0
  48. package/unittest/index.html +35 -0
@@ -0,0 +1,196 @@
1
+ /* eslint-disable */
2
+ var addSorting = (function() {
3
+ 'use strict';
4
+ var cols,
5
+ currentSort = {
6
+ index: 0,
7
+ desc: false
8
+ };
9
+
10
+ // returns the summary table element
11
+ function getTable() {
12
+ return document.querySelector('.coverage-summary');
13
+ }
14
+ // returns the thead element of the summary table
15
+ function getTableHeader() {
16
+ return getTable().querySelector('thead tr');
17
+ }
18
+ // returns the tbody element of the summary table
19
+ function getTableBody() {
20
+ return getTable().querySelector('tbody');
21
+ }
22
+ // returns the th element for nth column
23
+ function getNthColumn(n) {
24
+ return getTableHeader().querySelectorAll('th')[n];
25
+ }
26
+
27
+ function onFilterInput() {
28
+ const searchValue = document.getElementById('fileSearch').value;
29
+ const rows = document.getElementsByTagName('tbody')[0].children;
30
+ for (let i = 0; i < rows.length; i++) {
31
+ const row = rows[i];
32
+ if (
33
+ row.textContent
34
+ .toLowerCase()
35
+ .includes(searchValue.toLowerCase())
36
+ ) {
37
+ row.style.display = '';
38
+ } else {
39
+ row.style.display = 'none';
40
+ }
41
+ }
42
+ }
43
+
44
+ // loads the search box
45
+ function addSearchBox() {
46
+ var template = document.getElementById('filterTemplate');
47
+ var templateClone = template.content.cloneNode(true);
48
+ templateClone.getElementById('fileSearch').oninput = onFilterInput;
49
+ template.parentElement.appendChild(templateClone);
50
+ }
51
+
52
+ // loads all columns
53
+ function loadColumns() {
54
+ var colNodes = getTableHeader().querySelectorAll('th'),
55
+ colNode,
56
+ cols = [],
57
+ col,
58
+ i;
59
+
60
+ for (i = 0; i < colNodes.length; i += 1) {
61
+ colNode = colNodes[i];
62
+ col = {
63
+ key: colNode.getAttribute('data-col'),
64
+ sortable: !colNode.getAttribute('data-nosort'),
65
+ type: colNode.getAttribute('data-type') || 'string'
66
+ };
67
+ cols.push(col);
68
+ if (col.sortable) {
69
+ col.defaultDescSort = col.type === 'number';
70
+ colNode.innerHTML =
71
+ colNode.innerHTML + '<span class="sorter"></span>';
72
+ }
73
+ }
74
+ return cols;
75
+ }
76
+ // attaches a data attribute to every tr element with an object
77
+ // of data values keyed by column name
78
+ function loadRowData(tableRow) {
79
+ var tableCols = tableRow.querySelectorAll('td'),
80
+ colNode,
81
+ col,
82
+ data = {},
83
+ i,
84
+ val;
85
+ for (i = 0; i < tableCols.length; i += 1) {
86
+ colNode = tableCols[i];
87
+ col = cols[i];
88
+ val = colNode.getAttribute('data-value');
89
+ if (col.type === 'number') {
90
+ val = Number(val);
91
+ }
92
+ data[col.key] = val;
93
+ }
94
+ return data;
95
+ }
96
+ // loads all row data
97
+ function loadData() {
98
+ var rows = getTableBody().querySelectorAll('tr'),
99
+ i;
100
+
101
+ for (i = 0; i < rows.length; i += 1) {
102
+ rows[i].data = loadRowData(rows[i]);
103
+ }
104
+ }
105
+ // sorts the table using the data for the ith column
106
+ function sortByIndex(index, desc) {
107
+ var key = cols[index].key,
108
+ sorter = function(a, b) {
109
+ a = a.data[key];
110
+ b = b.data[key];
111
+ return a < b ? -1 : a > b ? 1 : 0;
112
+ },
113
+ finalSorter = sorter,
114
+ tableBody = document.querySelector('.coverage-summary tbody'),
115
+ rowNodes = tableBody.querySelectorAll('tr'),
116
+ rows = [],
117
+ i;
118
+
119
+ if (desc) {
120
+ finalSorter = function(a, b) {
121
+ return -1 * sorter(a, b);
122
+ };
123
+ }
124
+
125
+ for (i = 0; i < rowNodes.length; i += 1) {
126
+ rows.push(rowNodes[i]);
127
+ tableBody.removeChild(rowNodes[i]);
128
+ }
129
+
130
+ rows.sort(finalSorter);
131
+
132
+ for (i = 0; i < rows.length; i += 1) {
133
+ tableBody.appendChild(rows[i]);
134
+ }
135
+ }
136
+ // removes sort indicators for current column being sorted
137
+ function removeSortIndicators() {
138
+ var col = getNthColumn(currentSort.index),
139
+ cls = col.className;
140
+
141
+ cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, '');
142
+ col.className = cls;
143
+ }
144
+ // adds sort indicators for current column being sorted
145
+ function addSortIndicators() {
146
+ getNthColumn(currentSort.index).className += currentSort.desc
147
+ ? ' sorted-desc'
148
+ : ' sorted';
149
+ }
150
+ // adds event listeners for all sorter widgets
151
+ function enableUI() {
152
+ var i,
153
+ el,
154
+ ithSorter = function ithSorter(i) {
155
+ var col = cols[i];
156
+
157
+ return function() {
158
+ var desc = col.defaultDescSort;
159
+
160
+ if (currentSort.index === i) {
161
+ desc = !currentSort.desc;
162
+ }
163
+ sortByIndex(i, desc);
164
+ removeSortIndicators();
165
+ currentSort.index = i;
166
+ currentSort.desc = desc;
167
+ addSortIndicators();
168
+ };
169
+ };
170
+ for (i = 0; i < cols.length; i += 1) {
171
+ if (cols[i].sortable) {
172
+ // add the click event handler on the th so users
173
+ // dont have to click on those tiny arrows
174
+ el = getNthColumn(i).querySelector('.sorter').parentElement;
175
+ if (el.addEventListener) {
176
+ el.addEventListener('click', ithSorter(i));
177
+ } else {
178
+ el.attachEvent('onclick', ithSorter(i));
179
+ }
180
+ }
181
+ }
182
+ }
183
+ // adds sorting functionality to the UI
184
+ return function() {
185
+ if (!getTable()) {
186
+ return;
187
+ }
188
+ cols = loadColumns();
189
+ loadData();
190
+ addSearchBox();
191
+ addSortIndicators();
192
+ enableUI();
193
+ };
194
+ })();
195
+
196
+ window.addEventListener('load', addSorting);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/client_build_tool",
3
- "version": "0.0.5-exp.8",
3
+ "version": "0.0.6",
4
4
  "description": "A CLI tool to build web applications and client libraries",
5
5
  "main": "lib/index.js",
6
6
  "bin": {
package/result.json ADDED
@@ -0,0 +1 @@
1
+ {"jobDetails":{"isRunByLocal":true,"hostName":"sheik-zstk312","platForm":"Linux","branchName":"basheeth_cli"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":101,"numberOfFails":0,"numberOfCases":101,"numberOfSuites":14,"endTime":1685947245714,"startTime":1685947241561,"coverageDetail":{"codeCoveragePercentage":0,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2022/keysCheckinPrivateFields.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Ergonomic Brand checks for Private Fields"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2022/ObjectKeyCheck.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["check for private fields"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/outputFileNameCheck.test.js","CaseList":{"passedCaseList":[""],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2022/keysCheckinPrivateFields.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Ergonomic Brand checks for Private Fields"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2022/ObjectKeyCheck.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["check for private fields"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/outputFileNameCheck.test.js","CaseList":{"passedCaseList":[""],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check videos file","check html file"],"failedCaseList":["check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check videos file","check html file"],"failedCaseList":["check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check js file","check videos file","check html file"],"failedCaseList":["check LICENSE.txt file","check css file","check image file","check font file","check vendor file"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check videos file","check html file"],"failedCaseList":["check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check js file","check videos file","check html file"],"failedCaseList":["check LICENSE.txt file","check css file","check image file","check font file","check vendor file"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check js file","check videos file","check html file"],"failedCaseList":["check LICENSE.txt file","check css file","check image file","check font file","check vendor file"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check videos file","check html file"],"failedCaseList":["check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check videos file","check html file"],"failedCaseList":["check js file","check css file","check vendor file","check image file","check fonts file"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check js file","check videos file","check html file"],"failedCaseList":["check LICENSE.txt file","check css file","check image file","check font file","check vendor file"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file"],"failedCaseList":["check LICENSE.txt file"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["creating normal manifestJson"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating normal manifestJson"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating normal manifestJson"],"failedCaseList":["creating i18nmanifestJson","creating LICENSE.txt manifestJson"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating normal manifestJson"],"failedCaseList":["creating i18nmanifestJson","creating LICENSE.txt manifestJson"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file"],"failedCaseList":["test an array containing all format of files eg:js, css"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file","test an array containing all format of files eg:js, css"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating normal manifestJson"],"failedCaseList":["creating i18nmanifestJson","creating LICENSE.txt manifestJson"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file","test an array containing all format of files eg:js, css"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating normal manifestJson","creating i18nmanifestJson","creating LICENSE.txt manifestJson"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file","chunk name greater than hash","chunk name lesser than hash"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file","test an array containing all format of files eg:js, css"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating normal manifestJson","creating i18nmanifestJson","creating LICENSE.txt manifestJson"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file","chunk name greater than hash","chunk name lesser than hash"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file","test an array containing all format of files eg:js, css"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating i18nmanifestJson","creating LICENSE.txt manifestJson","creatin normal manifestJson"],"failedCaseList":["creating normal manifestJson"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file","chunk name greater than hash","chunk name lesser than hash"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating normal manifestJson","creating i18nmanifestJson","creating LICENSE.txt manifestJson"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file","test an array containing all format of files eg:js, css"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file","chunk name greater than hash","chunk name lesser than hash"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file","test an array containing all format of files eg:js, css"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating i18nmanifestJson","creating LICENSE.txt manifestJson"],"failedCaseList":["creating normal manifestJson"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file","test an array containing all format of files eg:js, css"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating i18nmanifestJson","creating LICENSE.txt manifestJson"],"failedCaseList":["creating normal manifestJson"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file","chunk name greater than hash","chunk name lesser than hash"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file","chunk name greater than hash","chunk name lesser than hash"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file","test an array containing all format of files eg:js, css"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating normal manifestJson","creating i18nmanifestJson","creating LICENSE.txt manifestJson"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating normal manifestJson","creating i18nmanifestJson","creating LICENSE.txt manifestJson"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file","test an array containing all format of files eg:js, css"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file","chunk name greater than hash","chunk name lesser than hash","check i18n.js.map file","check js.map file","check css.map file","check vendor.js.map file"],"failedCaseList":["check LICENSE.txt.map file"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file","chunk name greater than hash","chunk name lesser than hash","check i18n.js.map file","check LICENSE.txt.map file","check js.map file","check css.map file","check vendor.js.map file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating normal manifestJson","creating i18nmanifestJson","creating LICENSE.txt manifestJson"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file","test an array containing all format of files eg:js, css"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating normal manifestJson","creating i18nmanifestJson","creating LICENSE.txt manifestJson"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file","chunk name greater than hash","chunk name lesser than hash","check i18n.js.map file","check js.map file","check css.map file","check vendor.js.map file"],"failedCaseList":["check LICENSE.txt.map file"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file","test an array containing all format of files eg:js, css"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating normal manifestJson","creating i18nmanifestJson","creating LICENSE.txt manifestJson"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file","chunk name greater than hash","chunk name lesser than hash","check i18n.js.map file","check LICENSE.txt.map file","check js.map file","check css.map file","check vendor.js.map file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file","test an array containing all format of files eg:js, css"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/terser/__test__/function2.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Minify a function with console.log","Minify a function with return and console.log","remove unused (dead codes) and unwanted variables inside the function","Minify a function with a for loop","Minify a function with a if condition inside a for loop"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/function2.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Minify a function with console.log","Minify a function with return and console.log","remove unused (dead codes) and unwanted variables inside the function","Minify a function with a for loop","Minify a function with a if condition inside a for loop"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/loaderConfigs/__test__/ignoreTestCases.test.js","CaseList":{"passedCaseList":["passtests","falltests","passtests","falltests","passtests","falltests","passtests","falltests","passtests","falltests","passtests","falltests","passtests","falltests"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/terser/__test__/function.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["arrow function reducing the arguments name","arrow function with console","remove unused or unwanted codes inside function","Minify a simple function","Minify a function with a variable declaration","Minify a function with a if condition","Minify a function with return statement"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/function.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["arrow function reducing the arguments name","arrow function with console","remove unused or unwanted codes inside function","Minify a simple function","Minify a function with a variable declaration","Minify a function with a if condition","Minify a function with return statement"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/loop.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["minimize variable names inside the loop when using let type","for loop with variable keyword var","remove unused variable with keyword let and const","take unused variable with keyword var","remove unused and unwanted codes like if statement","using break in loops","using breaks in loops with an condition","using continue in loops with an condition","remove the code which are write below the continue"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/terser/__test__/conditionalOperation.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["remove unused if condition with true value","remove unused if condition with false value","remove unused if statements when using a let or var type variable","remove unused if statements using a const variable","if and else statement","if and else statement returns same value","using else if statement return same value","using else if statement return different value","skips the false content","nullish operator","first value matched but runs for all"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/terser/__test__/loop.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["minimize variable names inside the loop when using let type","for loop with variable keyword var","remove unused variable with keyword let and const","take unused variable with keyword var","remove unused and unwanted codes like if statement","using break in loops","using breaks in loops with an condition","using continue in loops with an condition","remove the code which are write below the continue"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/conditionalOperation.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["remove unused if condition with true value","remove unused if condition with false value","remove unused if statements when using a let or var type variable","remove unused if statements using a const variable","if and else statement","if and else statement returns same value","using else if statement return same value","using else if statement return different value","skips the false content","nullish operator","first value matched but runs for all"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file","chunk name greater than hash","chunk name lesser than hash","check i18n.js.map file","check LICENSE.txt.map file","check js.map file","check css.map file","check vendor.js.map file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/dummy.test.js","CaseList":{"passedCaseList":[],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/UglifyCSSPlugin/__test__/uglifyCss1.test.js","CaseList":{"passedCaseList":["original syntax","syntax with some extra spaces","gives margin to all sides","gives padding to all sides","removes 0 when decimal value is less than 1","minify the color values","remove the comments"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file","test an array containing all format of files eg:js, css"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/stringAndArrayMethods.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["string.includes() method","string.startsWith() method","string.endsWith() method","Array.from method","Array.keys method","Array. finf method","Array.findIndex() method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/classesAndObject.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["normal object","Assignment shorthand syntax takes extra space","minimize the name of parameter inside the class object"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/terser/__test__/promise.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["remove dead codes and minimize the parameter names","remove dead codes and minimize the variables","minimize the set timeout timer"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/promise.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["remove dead codes and minimize the parameter names","remove dead codes and minimize the variables","minimize the set timeout timer"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/terser/__test__/classesAndObject.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["normal object","Assignment shorthand syntax takes extra space","minimize the name of parameter inside the class object"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating normal manifestJson","creating i18nmanifestJson","creating LICENSE.txt manifestJson"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/minifyBooleanValues.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["minimize boolean values","terinary operator with var and let","terinary operator with const","minimize values when using logical and comparision operators"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/extraFeatures.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["computed-properties","unicode","destructuring","duplicate-keys","instance of","function name","template literals","shorthand properties"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/UglifyCSSPlugin/__test__/uglifycss.test.js","CaseList":{"passedCaseList":["remove white spaces","remove extra line","different classes have same property","margin","width","height","padding","border"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/terser/__test__/minifyBooleanValues.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["minimize boolean values","terinary operator with var and let","terinary operator with const","minimize values when using logical and comparision operators"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/minimizeVariableNames.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["reduce repeated variable names","variable names less than values with const","variable names greather than values with const","checking varible names with let and var"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/ObjectAndModules.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Object entries","Import from named exports","Import from default exports","super method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2018/regularExpressions.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["regex exec method","unicode escape","dot in regex","named-capturing-groups-regex"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/variableDeclaration.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["check let statement","check var statement","check const statement"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/loaderConfigs/__test__/postcss-rtl-all-cases.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Should NOT add [dir] prefix to symmetric rules","Should ONLY create LTR & RTL rules to asymmetric rules","Creates both LTR & RTL rules for asymmetric declarations","Removes original rule without symmetric declarations","Adds prefix to the :root element","Should correctly process values containing commas","Should correctly process values containing !important","Shouldn not create unnecessary duplications with !important","Should correctly process values containing _display","Should ignore declarations prefixed with /* rtl:ignore */","/* rtl:ignore */: Should leave other selectors alone","/* rtl:ignore */: should understand overrides","/* rtl:begin:ignore */ starts ignore mode","/* rtl:end:ignore */ stops ignore mode","/* rtl:ignore */ can be used inside /* rtl:begin:ignore */ and /* rtl:end:ignore */","that it ignores normal comments ","Value based ignore comments are honored","/*! rtl:ignore */ should consider as a valid directive","/*! rtl:begin:ignore */ and /*! rtl:end:ignore */ should consider as a valid directive","Should add direction to flippable keyframes-animations","Should handle multiple keyframes-animations","Should ignore keyframes-animation prefixed with /* rtl:ignore */","/* rtl:begin:ignore */ starts ignore mode for both keyframes and rules","/* rtl:end:ignore */ stops ignore mode for keyframes","Should create only LTR version","Should create only RTL version","Value replacement directives are honored","Value prepend directives are honored","Value append directives are honored","Value based ignore important comments are honored","Value replacement directives with important comments are honored","Value prepend directives with important comments are honored","Value append directives with important comments are honored","Should keep comments","Should respect custom prefix (attribute)","Should respect custom prefix (class)","Should not swap \"left\" and \"right\" subparts of selectors","Should respect multiline values","rtl:as: directive","rtl aliases","should ignore blacklist properties","should process whitelist properties only"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/terser/__test__/variableDeclaration.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["check let statement","check var statement","check const statement"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2022/staticFieldsAndMethod.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["static fields and methods","static Block"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2021/NumericSeparator.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["decimal literals","binary literals","hex literals"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/classes.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["class object","using class extends","new target method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2019/arrayMethods.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["array.flat()","array.flatMap()","array.sort()"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/terser/__test__/minimizeVariableNames.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["reduce repeated variable names","variable names less than values with const","variable names greather than values with const","checking varible names with let and var"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/arrowFunction.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["arrow function","array.map method","for each"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2019/trim-startAndend-method.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["string.trimStart() Method","string.trimEnd() Method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/MathAndNumberMethod.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Math methods","Number methods"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2017/asyncAndawait.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["async function"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2020/promiseAllSettledMathod.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["promise.allSettled()"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2021/promiseAny.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["promise.any method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/loaderConfigs/__test__/postcssRtl.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["is creating rtl css code for for margin-left","is creating rtl css code for for margin-right"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2022/RegexMatchIndices.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["regex match indices"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/spreadOperator.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["spread Ooperator"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/variables.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["keyword var","keyword let","keyword const"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2017/object-getOwnproperties.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Object.getOwnPropertyDescriptors() method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2022/keysCheckinPrivateFields.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Ergonomic Brand checks for Private Fields"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2017/stringMethods.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["string padStart() method","string padEnd() method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2022/ObjectKeyCheck.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["check for private fields"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2021/stringReplaceMethod.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["string.replaceAll method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/spreadParams.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Function Rest Parameter"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2021/logicalOperatorAssignments.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["nullish operator","logical operators"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2020/AssignmentOperator.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["The &&= Operator","The ||= Operator","The ??= Operator"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/promise.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Promises"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2018/promise-finally.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["promise.finally"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2017/object-entries.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Object.entries() method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2022/error.Cause.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["error.cause method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2017/object-values.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Object.values() method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2016/exponentationOperator.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Exponentation operator","Exponentation assignment operator"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/Symbol.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Symbol"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2020/chainOperator.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["The Nullish Coalescing Operator (??)"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2020/Dynamic-Import.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Dynamic import"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/forOf.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["for of loop"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2022/privateMethodsAndFields.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["private methods aand fields"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2019/Json.stringify.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["JSON.stringify() method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2019/optionalCatchBinding.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["optional-catch-binding"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2019/object-fromEntriesMethod.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Object.fromEntries() method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2018/asynchronous-iterator.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["asynchronous iterator"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/defaultParameterValues.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["default values as params"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2018/object-rest-spread.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Object rest spread operator"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2022/ObjecthasOwnMethod.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Object.hasOwn"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2022/String-atMethod.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["string.at method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2020/bigInt.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["BigInt"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2020/stringMatchMethod.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["string.matchAll method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2022/Array-atMethod.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["array.at method"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2019/revisedFunctionToString.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["convert function to string"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/Sets.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Sets"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/terser/__test__/removeCommentsAndEmptySpace.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["removeComments"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/Map.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Map"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/removeCommentsAndEmptySpace.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["removeComments"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2020/NullishOperator.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["The Nullish Coalescing Operator (??)"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2022/weakRef.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["weak ref"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2016/array-includes.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Exponentation operator"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2020/export-namespace-from.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["export namespace"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/terser/__test__/removeUnusedStrings.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["removeUnusedStrings"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/terser/__test__/removeUnusedStrings.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["removeUnusedStrings"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2022/topLevelAwait.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["Await import"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/babel/__test__/es2015/block-scoping.test.js","CaseList":{"passedCaseList":[],"failedCaseList":["block"]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/removeHashFromFileName.test.js","CaseList":{"passedCaseList":["check i18n file","check LICENSE.txt file","check js file","check css file","check vendor file","check image file","check fonts file","check videos file","check html file","chunk name greater than hash","chunk name lesser than hash","check i18n.js.map file","check LICENSE.txt.map file","check js.map file","check css.map file","check vendor.js.map file"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/addFilesNamesToManifestJson.test.js","CaseList":{"passedCaseList":["creating normal manifestJson","creating i18nmanifestJson","creating LICENSE.txt manifestJson"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/bundler/webpack/custom_plugins/AddManifestJson/__test__/createInitialEntries.test.js","CaseList":{"passedCaseList":["passing empty array","check i18n.js files","check LICENSE.txt file","check js file","check css file","check image file","check videos file","check font file","check vendor file","check html file","test an array containing all format of files eg:js, css"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/dummy.test.js","CaseList":{"passedCaseList":["to string","to array","to object","to null","to undefined","to NaN","to number","to array","to object","to null","to undefined","to NaN","to number","to string","to object","to null","to undefined","to NaN","to number","to string","to array","to null","to undefined","to NaN","to number","to string","to array","to null","to undefined","to NaN","to number","to string","to array","to null","to object","to NaN","to number","to string","to array","to undefined","to object","to NaN","Passing empty object to all arguments","Passing empty object to scheme ","Passing empty object to scheme and processEnv ","Passing empty object to scheme and customOptions","Passing string to schema","Passing number to schema","Passing Number array to schema","Passing Number array to schema","Passing String array to schema","Passing 2D array to schema","Passing object to schema","Passing Nested object to schema","Passing null value to schema","Passing undefined value to schema","Passing NaN value to schema","schema value not containing cli key is replaced by processEnv ","replacing schema value by processEnv","assigning value to an object by processEnv","if process env value == undefined , it takes schema's value as output ","process env value == null , it takes schema's value as output ","if we change the schema value by customOptions and by processEnv , then process Env value is updated because it has more priority","object cannot be changed","replacing nested object it is the proper way ","object cannot be changed (nested Object) ","to string","to array","to object","to undefined","to null","to NaN","to number","to array","to object","to undefined","to null","to NaN","to string","to number","to object","to undefined","to null","to NaN","to string","to number","to array","to undefined","to null","to NaN","to string","to number","to array","to object","to null","to NaN","to string","to number","to array","to object","to undefined","to NaN"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/applyValueToScheme.test.js","CaseList":{"passedCaseList":["to string","to array","to object","to null","to undefined","to NaN","to number","to array","to object","to null","to undefined","to NaN","to number","to string","to object","to null","to undefined","to NaN","to number","to string","to array","to null","to undefined","to NaN","to number","to string","to array","to null","to undefined","to NaN","to number","to string","to array","to null","to object","to NaN","to number","to string","to array","to undefined","to object","to NaN","Passing empty object to all arguments","Passing empty object to scheme","Passing empty object to scheme and processEnv","Passing empty object to scheme and customOptions","Passing string to schema","Passing number to schema","Passing Number array to schema","Passing Number array to schema","Passing String array to schema","Passing 2D array to schema","Passing object to schema","Passing Nested object to schema","Passing null value to schema","Passing undefined value to schema","Passing NaN value to schema","schema value not containing cli key is replaced by processEnv","replacing schema value by processEnv","assigning value to an object by processEnv","if process env value == undefined , it takes schema's value as output","process env value == null , it takes schema's value as output","if we change the schema value by customOptions and by processEnv , then process Env value is updated because it has more priority","object cannot be changed","replacing nested object it is the proper way","object cannot be changed (nested Object)","to string","to array","to object","to undefined","to null","to NaN","to number","to array","to object","to undefined","to null","to NaN","to string","to number","to object","to undefined","to null","to NaN","to string","to number","to array","to undefined","to null","to NaN","to string","to number","to array","to object","to null","to NaN","to string","to number","toC array","to object","to undefined","to NaN"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/passingEmptyObjects.test.js","CaseList":{"passedCaseList":["Passing empty object to all arguments","Passing empty object to scheme","Passing empty object to scheme and processEnv","Passing empty object to scheme and customOptions"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/replacingSchemaValueByCustomOptions/convertNumber.test.js","CaseList":{"passedCaseList":["to string","to array","to object","to null","to undefined","to NaN"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/applyValueToScheme.test.js","CaseList":{"passedCaseList":[],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/replacingSchemaValueByProcessEnv/convertNumber.test.js","CaseList":{"passedCaseList":["to string","to array","to object","to undefined","to null","to NaN"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/replacingSchemaValueByCustomOptions/convertArray.test.js","CaseList":{"passedCaseList":["to number","to string","to object","to null","to undefined","to NaN"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/replacingSchemaValueByProcessEnv/convertString.test.js","CaseList":{"passedCaseList":["to number","to array","to object","to undefined","to null","to NaN"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/replacingSchemaValueByCustomOptions/convertString.test.js","CaseList":{"passedCaseList":["to number","to array","to object","to null","to undefined","to NaN"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/replacingSchemaValueByProcessEnv/convertArray.test.js","CaseList":{"passedCaseList":["to string","to number","to object","to undefined","to null","to NaN"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/replacingSchemaValueByProcessEnv/convertUndefinedAndNull.test.js","CaseList":{"passedCaseList":["to string","to number","to array","to object","to null","to NaN","to string","to number","toC array","to object","to undefined","to NaN"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/replacingSchemaValueByCustomOptions/convertObject.test.js","CaseList":{"passedCaseList":["to number","to string","to array","to null","to undefined","to NaN","to number","to string","to array","to null","to undefined","to NaN"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/replacingSchemaValueByProcessEnv/convertObject.test.js","CaseList":{"passedCaseList":["to string","to number","to array","to undefined","to null","to NaN"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/otherTestCases.test.js","CaseList":{"passedCaseList":["schema value not containing cli key is replaced by processEnv","replacing schema value by processEnv","assigning value to an object by processEnv","if process env value == undefined , it takes schemas value as output","process env value == null , it takes schemas value as output","if we change the schema value by customOptions and by processEnv , then process Env value is updated because it has more priority","object cannot be changed","replacing nested object it is the proper way","object cannot be changed (nested Object)"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/passingDifferentDataTypesToSchema.test.js","CaseList":{"passedCaseList":["Passing string to schema","Passing number to schema","Passing Number array to schema","Passing String array to schema","Passing 2D array to schema","Passing object to schema","Passing Nested object to schema","Passing null value to schema","Passing undefined value to schema","Passing NaN value to schema"],"failedCaseList":[]}},{"fileName":"/home/sheik-zstk312/work/client_build_tool/packages/client_build_tool/src/shared/schemas/applyValuesToSchema/__test__/replacingSchemaValueByCustomOptions/convertUndefinedAndNull.test.js","CaseList":{"passedCaseList":["to number","to string","to array","to null","to object","to NaN","to number","to string","to array","to undefined","to object","to NaN"],"failedCaseList":[]}}]}}}
@@ -0,0 +1,35 @@
1
+ <html>
2
+ <head>
3
+ <style>
4
+ .red {
5
+ font-weight: bold;
6
+ color: red;
7
+ }
8
+ .green {
9
+ font-weight: bold;
10
+ color: green;
11
+ }
12
+ table {
13
+ font-family: arial, sans-serif;
14
+ border-collapse: collapse;
15
+ }
16
+
17
+ td,
18
+ th {
19
+ border: 1px solid #dddddd;
20
+ padding: 8px;
21
+ }
22
+ </style>
23
+ </head>
24
+ <body>
25
+ <table>
26
+ <tr>
27
+ <th>Title</th>
28
+ <th>FullName</th>
29
+ <th>Test Case Path</th>
30
+ </tr>
31
+ </table>
32
+ <br />COVERAGE <span class="red">0%</span> <br />
33
+ less than 60% consider failure
34
+ </body>
35
+ </html>