@zohodesk/dot 1.0.0-temp-213 → 1.0.0-temp-215

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 (53) hide show
  1. package/.cli/propValidation_report.html +1 -1
  2. package/README.md +8 -0
  3. package/assets/Appearance/dark/mode/Dot_DarkMode.module.css +7 -7
  4. package/assets/Appearance/dark/themes/blue/blue_DotCTA_DarkModifyCategory.module.css +13 -0
  5. package/assets/Appearance/dark/themes/green/green_DotCTA_DarkModifyCategory.module.css +13 -0
  6. package/assets/Appearance/dark/themes/orange/orange_DotCTA_DarkModifyCategory.module.css +13 -0
  7. package/assets/Appearance/dark/themes/red/red_DotCTA_DarkModifyCategory.module.css +13 -0
  8. package/assets/Appearance/dark/themes/yellow/yellow_DotCTA_DarkModifyCategory.module.css +13 -0
  9. package/assets/Appearance/light/mode/Dot_LightMode.module.css +13 -13
  10. package/assets/Appearance/light/themes/blue/blue_DotCTA_LightModifyCategory.module.css +13 -0
  11. package/assets/Appearance/light/themes/green/green_DotCTA_LightModifyCategory.module.css +13 -0
  12. package/assets/Appearance/light/themes/orange/orange_DotCTA_LightModifyCategory.module.css +13 -0
  13. package/assets/Appearance/light/themes/red/red_DotCTA_LightModifyCategory.module.css +13 -0
  14. package/assets/Appearance/light/themes/yellow/yellow_DotCTA_LightModifyCategory.module.css +13 -0
  15. package/assets/Appearance/pureDark/mode/Dot_PureDarkMode.module.css +5 -5
  16. package/assets/Appearance/pureDark/themes/blue/blue_DotCTA_PureDarkModifyCategory.module.css +13 -0
  17. package/assets/Appearance/pureDark/themes/green/green_DotCTA_PureDarkModifyCategory.module.css +13 -0
  18. package/assets/Appearance/pureDark/themes/orange/orange_DotCTA_PureDarkModifyCategory.module.css +13 -0
  19. package/assets/Appearance/pureDark/themes/red/red_DotCTA_PureDarkModifyCategory.module.css +13 -0
  20. package/assets/Appearance/pureDark/themes/yellow/yellow_DotCTA_PureDarkModifyCategory.module.css +13 -0
  21. package/es/Attachment/Attachment.module.css +7 -3
  22. package/es/AttachmentViewer/Attachment.js +106 -1
  23. package/es/AttachmentViewer/AttachmentViewer.js +114 -28
  24. package/es/AttachmentViewer/AttachmentViewer.module.css +32 -9
  25. package/es/AttachmentViewer/__tests__/__snapshots__/AttachmentViewer.spec.js.snap +15 -16
  26. package/es/AttachmentViewer/props/defaultProps.js +1 -1
  27. package/es/AttachmentViewer/props/propTypes.js +9 -1
  28. package/es/AttachmentViewer/utils.js +98 -13
  29. package/es/form/fields/Fields.module.css +3 -0
  30. package/es/form/fields/RadioField/RadioField.js +1 -1
  31. package/es/lookup/Lookup/Lookup.js +2 -1
  32. package/es/lookup/Lookup/Lookup.module.css +6 -1
  33. package/es/lookup/Lookup/props/propTypes.js +1 -0
  34. package/es/utils/General.js +23 -1
  35. package/lib/Attachment/Attachment.module.css +7 -3
  36. package/lib/AttachmentViewer/Attachment.js +109 -1
  37. package/lib/AttachmentViewer/AttachmentViewer.js +121 -25
  38. package/lib/AttachmentViewer/AttachmentViewer.module.css +32 -9
  39. package/lib/AttachmentViewer/__tests__/__snapshots__/AttachmentViewer.spec.js.snap +15 -16
  40. package/lib/AttachmentViewer/props/defaultProps.js +1 -1
  41. package/lib/AttachmentViewer/props/propTypes.js +9 -1
  42. package/lib/AttachmentViewer/utils.js +102 -8
  43. package/lib/form/fields/Fields.module.css +3 -0
  44. package/lib/form/fields/RadioField/RadioField.js +1 -1
  45. package/lib/lookup/Lookup/Lookup.js +2 -1
  46. package/lib/lookup/Lookup/Lookup.module.css +6 -1
  47. package/lib/lookup/Lookup/props/propTypes.js +1 -0
  48. package/lib/utils/General.js +25 -1
  49. package/package.json +12 -13
  50. package/result.json +1 -0
  51. package/unittest/index.html +45 -0
  52. package/es/common/dot_common.module.css +0 -4
  53. package/lib/common/dot_common.module.css +0 -4
@@ -3,10 +3,12 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.ZoomEvent = exports.Zoom = void 0;
6
+ exports.ZoomEvent = exports.Zoom = exports.SUPPORTED_FILE_EXTENSIONS = exports.FILE_EXTENSIONS = void 0;
7
7
  exports.checkAudioUrlValidity = checkAudioUrlValidity;
8
8
  exports.checkFileSourcesValidation = checkFileSourcesValidation;
9
9
  exports.checkImageValidity = checkImageValidity;
10
+ exports.checkVideoUrlValidity = checkVideoUrlValidity;
11
+ exports.isValidDocument = isValidDocument;
10
12
 
11
13
  var _Attachment = require("./Attachment");
12
14
 
@@ -153,6 +155,21 @@ function checkImageValidity(src) {
153
155
  });
154
156
  }
155
157
 
158
+ function checkVideoUrlValidity(url) {
159
+ return new Promise(function (resolve) {
160
+ var video = document.createElement('video');
161
+ video.src = url;
162
+
163
+ video.oncanplaythrough = function () {
164
+ return resolve(true);
165
+ };
166
+
167
+ video.onerror = function () {
168
+ return resolve(false);
169
+ };
170
+ });
171
+ }
172
+
156
173
  function checkAudioUrlValidity(url) {
157
174
  return new Promise(function (resolve) {
158
175
  var audio = new Audio(url);
@@ -169,25 +186,102 @@ function checkAudioUrlValidity(url) {
169
186
 
170
187
  ;
171
188
 
189
+ function isValidDocument(url) {
190
+ if (!url) {
191
+ return false;
192
+ }
193
+
194
+ return true;
195
+ }
196
+
197
+ var FILE_EXTENSIONS = {
198
+ audio: ['mp3', 'wav', 'wma', 'aac', 'm4r', 'm4a', 'flac', 'aiff', 'alac', 'ogg', 'opus', 'amr', 'mid', 'midi'],
199
+ video: ['mp4', 'mkv', 'mov', 'mpeg', 'mpg', 'flv', 'wmv', 'avi', 'webm', 'ogv', 'm4v', '3gp', '3g2'],
200
+ document: ['doc', 'docx', 'docm', 'dot', 'dotx', 'dotm', 'odt', 'rtf', 'txt', 'md', 'pages', 'xls', 'xlsx', 'xlsm', 'xlsb', 'csv', 'tsv', 'ods', 'sxc', 'numbers', 'ppt', 'pptx', 'pps', 'ppsx', 'pot', 'potx', 'odp', 'sxi', 'key', 'pdf', 'xml', 'json', 'yaml', 'yml', 'log', 'eml', 'msg'],
201
+ image: ['jpeg', 'jpg', 'png', 'apng', 'gif', 'bmp', 'dib', 'tiff', 'tif', 'ico', 'svg', 'webp', 'heic', 'heif', 'jfif', 'pjpeg', 'pjp', 'avif']
202
+ };
203
+ exports.FILE_EXTENSIONS = FILE_EXTENSIONS;
204
+ var SUPPORTED_FILE_EXTENSIONS = {
205
+ image: ['jpeg', 'jpg', 'png', 'apng', 'gif', 'bmp', 'tiff', 'tif', 'ico', 'svg', 'heic', 'webp'],
206
+ doc: ['txt'],
207
+ pdf: ['pdf'],
208
+ html: ['html', 'htm', 'xhtml'],
209
+ ppt: ['ppt', 'pps', 'odp', 'sxi', 'pptx', 'ppsx', 'pot', 'potx', 'key'],
210
+ zip: ['rar', 'jar', 'zip'],
211
+ word: ['doc', 'docx', 'sxw', 'odt', 'docm', 'dot', 'dotm', 'dotx', 'rtf', 'pages'],
212
+ xml: ['xml'],
213
+ sheet: ['xls', 'xlsx', 'xlsm', 'xlsb', 'sxc', 'ods', 'csv', 'tsv', 'numbers'],
214
+ audio: ['mp3', 'wav', 'wma', 'aac', 'm4r', 'ogg', 'opus'],
215
+ video: ['mp4', 'mkv', 'mov', 'mpeg', 'flv', 'wmv', 'avi', 'webm', 'ogv'],
216
+ mail: ['eml', 'msg'],
217
+ linux: ['sh', 'bin'],
218
+ css: ['css'],
219
+ exe: ['exe'],
220
+ event: ['ics']
221
+ };
222
+ exports.SUPPORTED_FILE_EXTENSIONS = SUPPORTED_FILE_EXTENSIONS;
223
+
172
224
  function checkFileSourcesValidation(_ref) {
173
225
  var fileName = _ref.fileName,
174
- viewURL = _ref.viewURL;
226
+ viewURL = _ref.viewURL,
227
+ previewUrl = _ref.previewUrl,
228
+ allowedPreviewExtensionsData = _ref.allowedPreviewExtensionsData;
229
+ var extension = ((0, _Attachment.getExtensionFromFileName)(fileName) || '').toLowerCase();
230
+
231
+ if (!extension) {
232
+ return Promise.resolve({
233
+ isViewURLValid: false,
234
+ canZoom: false
235
+ });
236
+ }
237
+
238
+ var extensionSource = allowedPreviewExtensionsData || FILE_EXTENSIONS;
175
239
 
176
- if ((0, _Attachment.isAudioFile)(fileName)) {
177
- var audioValidityPromise = checkAudioUrlValidity(viewURL);
178
- return audioValidityPromise.then(function (isURLValid) {
240
+ var fileExtensionValidation = function fileExtensionValidation(type) {
241
+ var list = extensionSource[type];
242
+ if (!Array.isArray(list)) return false;
243
+ return list.map(function (e) {
244
+ return e.toLowerCase();
245
+ }).includes(extension);
246
+ };
247
+
248
+ if (fileExtensionValidation('audio')) {
249
+ return checkAudioUrlValidity(viewURL).then(function (isURLValid) {
179
250
  return {
180
251
  isViewURLValid: isURLValid,
181
252
  canZoom: false
182
253
  };
183
254
  });
184
- } else {
185
- var imageValidityPromise = checkImageValidity(viewURL);
186
- return imageValidityPromise.then(function (isURLValid) {
255
+ }
256
+
257
+ if (fileExtensionValidation('video')) {
258
+ return checkVideoUrlValidity(viewURL).then(function (isURLValid) {
259
+ return {
260
+ isViewURLValid: isURLValid,
261
+ canZoom: false
262
+ };
263
+ });
264
+ }
265
+
266
+ if (fileExtensionValidation('document')) {
267
+ var isValid = isValidDocument(previewUrl, fileName);
268
+ return Promise.resolve({
269
+ isViewURLValid: isValid,
270
+ canZoom: false
271
+ });
272
+ }
273
+
274
+ if (fileExtensionValidation('image')) {
275
+ return checkImageValidity(viewURL).then(function (isURLValid) {
187
276
  return {
188
277
  isViewURLValid: isURLValid,
189
278
  canZoom: isURLValid
190
279
  };
191
280
  });
192
281
  }
282
+
283
+ return Promise.resolve({
284
+ isViewURLValid: false,
285
+ canZoom: false
286
+ });
193
287
  }
@@ -7,6 +7,9 @@
7
7
  position: relative;
8
8
  min-height: var(--zd_size25) ;
9
9
  }
10
+ .fieldMargin_large {
11
+ margin-top: var(--zd_size10) ;
12
+ }
10
13
  .fieldMargin_medium {
11
14
  margin-top: var(--zd_size5) ;
12
15
  }
@@ -182,7 +182,7 @@ var RadioField = /*#__PURE__*/function (_PureComponent) {
182
182
  customClass: "".concat(_FieldsModule["default"].fieldLabel, " ").concat(isMandatory ? _FieldsModule["default"].labelMandatory : ''),
183
183
  dataId: isDisabled ? "".concat(dataId, "_label_disabled") : isMandatory ? "".concat(dataId, "_label_mandatory") : "".concat(dataId, "_label")
184
184
  }, LabelProps)), /*#__PURE__*/_react["default"].createElement("div", {
185
- className: "".concat(_FieldsModule["default"].fieldContainer, " ").concat(isBoxStyle ? _FieldsModule["default"].radiosWrapper : '', " ").concat(labelName ? _FieldsModule["default"].fieldMargin_medium : '', " ").concat(_FieldsModule["default"].radioContainer)
185
+ className: "".concat(_FieldsModule["default"].fieldContainer, " ").concat(isBoxStyle ? _FieldsModule["default"].radiosWrapper : '', " ").concat(labelName ? isBoxStyle ? _FieldsModule["default"].fieldMargin_large : _FieldsModule["default"].fieldMargin_medium : '', " ").concat(_FieldsModule["default"].radioContainer)
186
186
  }, options.map(function (option, index) {
187
187
  var text = option.text,
188
188
  value = option.value,
@@ -110,6 +110,7 @@ var Lookup = /*#__PURE__*/function (_Component) {
110
110
  needFocusScope = _this$props.needFocusScope,
111
111
  customProps = _this$props.customProps,
112
112
  isMinHeight = _this$props.isMinHeight,
113
+ containerClass = _this$props.containerClass,
113
114
  lookupClass = _this$props.lookupClass;
114
115
 
115
116
  var _a11y$role = a11y.role,
@@ -150,7 +151,7 @@ var Lookup = /*#__PURE__*/function (_Component) {
150
151
  }, a11yAttributes), /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
151
152
  "data-drag-container": "true",
152
153
  isCover: false,
153
- className: isMinHeight ? "".concat(_LookupModule["default"].wrapper) : "".concat(_LookupModule["default"].coverwrap)
154
+ className: "".concat(isMinHeight ? _LookupModule["default"].wrapper : _LookupModule["default"].coverwrap, " ").concat(_LookupModule["default"].containerWidth, " ").concat(containerClass)
154
155
  }, children));
155
156
 
156
157
  return /*#__PURE__*/_react["default"].createElement(_FreezeLayer["default"], {
@@ -19,6 +19,10 @@
19
19
  margin: auto ;
20
20
  }
21
21
 
22
+ .containerWidth {
23
+ width: 100% ;
24
+ }
25
+
22
26
  /* Size */
23
27
  .smallSize {
24
28
  max-width: var(--zd_size470) ;
@@ -35,10 +39,11 @@
35
39
  .largeSize {
36
40
  max-width: 70% ;
37
41
  }
42
+
38
43
  .xlargeSize {
39
44
  max-width: 80% ;
40
45
  }
41
46
 
42
47
  .fullSize {
43
48
  max-width: 90% ;
44
- }
49
+ }
@@ -30,6 +30,7 @@ var propTypes = {
30
30
  onClick: _propTypes["default"].func,
31
31
  onClose: _propTypes["default"].func,
32
32
  isMinHeight: _propTypes["default"].bool,
33
+ containerClass: _propTypes["default"].string,
33
34
  lookupClass: _propTypes["default"].string
34
35
  };
35
36
  exports.propTypes = propTypes;
@@ -5,6 +5,7 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.DUMMY_OBJECT = void 0;
7
7
  exports.formatPhoneUrl = formatPhoneUrl;
8
+ exports.getBrowserWithVersion = getBrowserWithVersion;
8
9
  exports.getFullName = getFullName;
9
10
  exports.shallowDiff = shallowDiff;
10
11
  exports.stopBubbling = stopBubbling;
@@ -59,4 +60,27 @@ function formatPhoneUrl(phone) {
59
60
  }
60
61
 
61
62
  var DUMMY_OBJECT = Object.freeze({});
62
- exports.DUMMY_OBJECT = DUMMY_OBJECT;
63
+ exports.DUMMY_OBJECT = DUMMY_OBJECT;
64
+
65
+ function getBrowserWithVersion() {
66
+ var userAgent = navigator.userAgent;
67
+ var tempMatch;
68
+ var browserMatch = userAgent.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*([\d\.]+)/i) || [];
69
+
70
+ if (userAgent.toLowerCase().indexOf('edge') !== -1) {
71
+ return userAgent.substring(userAgent.toLowerCase().indexOf('edge'));
72
+ }
73
+
74
+ if (/trident/i.test(browserMatch[1])) {
75
+ tempMatch = /\brv[ :]+(\d+(\.\d+)?)/g.exec(userAgent) || [];
76
+ return "IE ".concat(tempMatch[1] || '');
77
+ }
78
+
79
+ browserMatch = browserMatch[2] ? [browserMatch[1], browserMatch[2]] : [navigator.appName, navigator.appVersion, '-?'];
80
+
81
+ if ((tempMatch = userAgent.match(/version\/([\.\d]+)/i)) !== null) {
82
+ browserMatch[2] = tempMatch[1];
83
+ }
84
+
85
+ return browserMatch.join(' ');
86
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/dot",
3
- "version": "1.0.0-temp-213",
3
+ "version": "1.0.0-temp-215",
4
4
  "main": "lib/index",
5
5
  "module": "es/index.js",
6
6
  "private": false,
@@ -33,11 +33,12 @@
33
33
  "lintAll": "react-cli lint ./src",
34
34
  "lintAllFix": "npm run lintAll --eslint:fix=true",
35
35
  "test": "react-cli test",
36
+ "_test": "",
36
37
  "snap-update": "npm run test-clean && npm run test -- -u",
37
38
  "sstest": "react-cli sstest",
38
39
  "common_package_build": "cd ../common && npm run build && cd ../dot",
39
40
  "docs": "npm run css:review && review:props && react-cli docs",
40
- "prepublishOnly": "node prePublish.js && npm run download && npm run css:review && npm run review:props",
41
+ "prepublishOnly": "node prePublish.js && npm run download",
41
42
  "postpublish": "node postPublish.js",
42
43
  "test-clean": "react-cli clean ./coverage && react-cli clean ./unittest react-cli clean ./es && react-cli clean ./lib && react-cli clean ./package-lock.json && react-cli clean ./result.json",
43
44
  "download": "react-cli clean ./node_modules ./package-lock.json && npm install && cd ../ && npm run download",
@@ -58,37 +59,35 @@
58
59
  "@testing-library/react": "^11.2.5",
59
60
  "@testing-library/react-hooks": "^7.0.2",
60
61
  "@testing-library/user-event": "^13.0.10",
61
- "@zohodesk-private/color-variable-preprocessor": "1.2.0",
62
+ "@zohodesk-private/color-variable-preprocessor": "1.0.0-temp-12",
62
63
  "@zohodesk-private/css-variable-migrator": "1.0.9",
63
64
  "@zohodesk-private/node-plugins": "1.1.8",
64
65
  "@zohodesk-private/react-prop-validator": "1.2.3",
65
- "@zohodesk/a11y": "2.3.6",
66
- "@zohodesk/components": "1.0.0-temp-231",
66
+ "@zohodesk/a11y": "2.3.7",
67
+ "@zohodesk/components": "1.0.0-temp-233",
67
68
  "@zohodesk/hooks": "2.0.5",
68
69
  "@zohodesk/icons": "1.1.0",
69
70
  "@zohodesk/layout": "^3.1.0",
70
- "@zohodesk/svg": "1.2.1",
71
+ "@zohodesk/svg": "1.2.2",
71
72
  "@zohodesk/utils": "1.3.14",
72
73
  "@zohodesk/variables": "1.1.0",
73
74
  "@zohodesk/virtualizer": "1.0.3",
74
75
  "react-sortable-hoc": "^0.8.3",
75
76
  "velocity-react": "1.4.3",
76
- "@zohodesk/dotkit": "1.0.3"
77
+ "@zohodesk/dotkit": "1.0.3",
78
+ "@zohodesk/react-cli": "1.1.27"
77
79
  },
78
80
  "peerDependencies": {
79
81
  "velocity-react": "1.4.3",
80
82
  "@zohodesk/variables": "1.1.0",
81
- "@zohodesk/components": "1.0.0-temp-231",
83
+ "@zohodesk/components": "1.0.0-temp-233",
82
84
  "@zohodesk/icons": "1.1.0",
83
- "@zohodesk/svg": "1.2.1",
85
+ "@zohodesk/svg": "1.2.2",
84
86
  "@zohodesk/virtualizer": "1.0.3",
85
87
  "react-sortable-hoc": "^0.8.3",
86
88
  "@zohodesk/hooks": "2.0.5",
87
89
  "@zohodesk/utils": "1.3.14",
88
- "@zohodesk/a11y": "2.3.6",
90
+ "@zohodesk/a11y": "2.3.7",
89
91
  "@zohodesk/layout": "3.1.0"
90
- },
91
- "dependencies": {
92
- "@zohodesk/react-cli": "^1.1.27"
93
92
  }
94
93
  }
package/result.json ADDED
@@ -0,0 +1 @@
1
+ {"jobDetails":{"isRunByLocal":true,"hostName":"karuppiah-19823","platForm":"Darwin","branchName":"ComponentLib"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":351,"numberOfFails":2,"numberOfCases":353,"numberOfSuites":145,"endTime":1743751434939,"startTime":1743751376708,"coverageDetail":{"codeCoveragePercentage":79.03,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/Separator/__tests__/Separator.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the palette of - default","rendering the palette of - primary","rendering the palette of - secondary","rendering the type of - dot","rendering the type of - slash","rendering the type of - arrow","rendering the type of - comma","rendering the type of - none","rendering with customSeparatorType props","rendering the aligndirection of - row","rendering the aligndirection of - column","rendering the aligndirection of - row-reverse","rendering the aligndirection of - column-reverse","rendering the wrap of - wrap","rendering the wrap of - wrap-reverse","rendering the wrap of - nowrap","rendering the customClass props","rendering the shrink props with true","rendering the all types of children data"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/AttachmentViewer/__tests__/AttachmentImage.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/Upload/__tests__/Upload.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the isPreview prop","rendering the isPreview prop is false","rendering the tooltip prop","rendering the dataId prop with isPreview isPreviewType are true ","rendering the dataId prop with isPreviewType is false","rendering the dataSelectorId prop","rendering the progressValue prop","rendering the iconName prop","rendering the fileSize prop","rendering the imgSrc prop","rendering the isPreviewType true prop","rendering the isPreviewType false prop","rendering the onRemove prop","rendering the size of - small","rendering the size of - medium","rendering the palette of - light","rendering the palette of - night","eleRef prop is a function"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/IconButton/__tests__/IconButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the palette of- primary","rendering the palette of- primaryFilled","rendering the palette of- default","rendering the isActive true with palette of- primary","rendering the isActive true with palette of- primaryFilled","rendering the isActive true with palette of- default","rendering the hovertypes- default","rendering the hovertypes- border","rendering the hovertypes- bg","rendering isNeedEffect is False","rendering ally","rendering ally","rendering needButtonTag","rendering tourId","rendering in Icon","rendering in dataIsHtml is True","rendering in isDisabled is True","rendering in ClassName","rendering in title","eleRef prop is a function","Checking the \"Children\""],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/ExternalLink/__tests__/ExternalLink.spec.js","CaseList":{"passedCaseList":["renders with default props","render the herf","render the herf as bool value","renders with target is - _blank","renders with target is - _self","renders with title prop","renders with custom className","renders with rel attribute","renders with dataId prop","renders with customProps","renders with children content"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/Image/__tests__/Image.spec.js","CaseList":{"passedCaseList":["rendering the default props","checking \"isCover\" is false","rendering \"alt\" and \"src\" value ","rendering \"dataid\" value","rendering \"Original\" value","rendering \"Id\" value","rendering \"title\" value"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/DotProvider/__tests__/DotProvider.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the default attributes, styles and modified the tag props","rendering the default attributes, styles and modifying the tag prop to React.Fragment","rendering the providerRef props","rendering the additional ...rest props","rendering the wrong themeAppearance and themeColor","rendering the theme-appearance of light along with theme-color of blue","rendering the theme-appearance of light along with theme-color of green","rendering the theme-appearance of light along with theme-color of orange","rendering the theme-appearance of light along with theme-color of red","rendering the theme-appearance of light along with theme-color of yellow","rendering the theme-appearance of dark along with theme-color of blue","rendering the theme-appearance of dark along with theme-color of green","rendering the theme-appearance of dark along with theme-color of orange","rendering the theme-appearance of dark along with theme-color of red","rendering the theme-appearance of dark along with theme-color of yellow","rendering the theme-appearance of pureDark along with theme-color of blue","rendering the theme-appearance of pureDark along with theme-color of green","rendering the theme-appearance of pureDark along with theme-color of orange","rendering the theme-appearance of pureDark along with theme-color of red","rendering the theme-appearance of pureDark along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of light along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of dark along with theme-color of yellow","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of blue","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of green","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of orange","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of red","rendering the custom themeAppearanceAttr and themeColorAttr props with theme-appearance of pureDark along with theme-color of yellow","rendering the baseZoomUnit props of 0.5","rendering the baseZoomUnit props of 0.8","rendering the baseZoomUnit props of 1","rendering the baseZoomUnit props of 1.2","rendering the baseFontUnit props of 1px","rendering the baseFontUnit props of 1rem","rendering the baseFontUnit props of 1em","rendering the baseFontUnit props of 1","rendering the zoomUnitVariable prop along with baseZoomUnit props","rendering the fontUnitVariable prop along with baseFontUnit props","rendering the ref function type props","rendering the ref object type props","rendering the onAssetsDownloadSuccess props","rendering the getAssetsPromises props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/ImportantNotes/__tests__/ImportantNotes.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the text prop","rendering the iconName prop","rendering the iconName prop and text and children are empty","rendering the iconName prop is null and given text value","rendering the iconSize","rendering the children","rendering the text and children prop","rendering the text and children prop is empty","rendering the iconClass","rendering the isCover prop is true","rendering the isCover prop is false","rendering the className prop"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/alert/AlertHeader/__tests__/AlertHeader.spec.js","CaseList":{"passedCaseList":["renders with default props","renders with title","renders with palette - default","renders with palette - primary","renders with palette - danger","renders with needIcon false","renders with iconType - delete","renders with iconType - alert","renders with iconType - remoteAssist","renders with iconType - splitTicket","renders with iconType - update","renders with onClose function and closeTitle","renders iconName is provided","renders with breakChildren prop","renders with children content","renders with custom iconClass","renders with dataId prop","renders iconType and iconSize is fales","renders iconType and iconSize is true","renders falls back when neither iconName nor matching iconType is available"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/MessageBanner/__tests__/MessageBanner.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the href props along with urlText props","rendering the palette of - default","rendering the palette of - blue","rendering the palette of - white","rendering the type of - primary","rendering the type of - secondary","rendering the customClass props","rendering the onClose props via mock function"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/PlusIcon/__tests__/PlusIcon.spec.js","CaseList":{"passedCaseList":["renders with default props","renders with dataId prop","renders with iconName prop","renders with iconClass prop","renders with iconSize prop","renders with size is - small","renders with size is - xsmall","renders with size is - xxsmall","renders with size is - medium","renders with size is - xmedium","renders with size is - xlarge","renders with title prop","renders with customClass prop"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/RadioField/__tests__/RadioField.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering with options","rendering options with isBoxStyle"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/setup/table/Text/__tests__/Text.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the url","Should render size - bold","Should render size - semiBold","Should render size - heading"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/NewStar/__tests__/NewStar.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the palette of - green","rendering the palette of - blue","rendering the palette of - yellow","rendering the position of - topRight","rendering the position of - topLeft","rendering the position of - bottomRight","rendering the position of - bottomLeft","rendering the customClass props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/CheckBoxField/__tests__/CheckBoxField.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the custom children","rendering the custom label children via renderLabelProps"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/setup/helptips/ListGroup/__tests__/ListGroup.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/Subject/__tests__/Subject.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the whiteSpace of -normal","rendering the whiteSpace of -nowrap","rendering the whiteSpace of -pre","rendering the whiteSpace of -pre-line","rendering the whiteSpace of -pre-wrap","rendering the whiteSpace of -break-spaces"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/AttachmentViewer/__tests__/AttachmentViewer.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the when isActive is true "],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/FreezeLayer/__tests__/FreezeLayer.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/lookup/Lookup/__tests__/Lookup.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/lookup/header/Search/__tests__/Search.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the search active","rendering the prop hasSeparator is true","rendering the prop hasSeparator is false","rendering the renderChildren props via function","rendering the customized style search"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/Drawer/__tests__/Drawer.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the isActive true"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/status/StatusDropdown/__tests__/StatusDropdown.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering target element"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/alertIcons/__tests__/NotificationAlertIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/alert/AlertLookup/__tests__/AlertLookup.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/errorstate/UnableToProcessRequest/__tests__/UnableToProcessRequest.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/lookup/AlertLookup/__tests__/AlertLookup.spec.js","CaseList":{"passedCaseList":["rendering the defult props","rendering isActive is true defult"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/notification/DesktopNotificationHeader/__tests__/DesktopNotificationHeader.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/errorstate/RequestUrlNotFound/__tests__/RequestUrlNotFound.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/DepartmentDropDown/__tests__/DepartmentDropDown.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/TagsMultiSelectField/__tests__/TagsMultiSelectField.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/GlobalNotification/__tests__/GlobalNotification.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/errorstate/UnauthorizedLogin/__tests__/UnauthorizedLogin.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/TagsMultiSelect/__tests__/TagsMultiSelect.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/notification/DesktopNotification/__tests__/DesktopNotification.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/errorstate/OopsSomethingMiss/__tests__/OopsSomethingMiss.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/errorstate/UnauthorizedLogin/__tests__/UnauthorizedLogin.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/layout/SetupDetailLayout/__tests__/SetupDetailLayout.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/emptystate/CommonEmptyState/__tests__/CommonEmptyState.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/ValidationMessage/__tests__/ValidationMessage.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/alertIcons/__tests__/WarningAlertIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/alertIcons/__tests__/SuccessAlertIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/alertIcons/__tests__/DangerAlertIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/svg/__tests__/TemplateIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/errorstate/WillBeRightBack/__tests__/WillBeRightBack.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/SecondaryText/__tests__/HappinessRating.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/BluePrintStatus/__tests__/BluePrintStatus.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/SentimentStatus/__tests__/SentimentStatus.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/TextEditorWrapper/__tests__/TextEditorWrapper.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/svg/__tests__/SnippetIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/avatar/AvatarCollision/__tests__/AvatarCollision.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/errorstate/UnableToProcess/__tests__/UnableToProcess.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/alertIcons/__tests__/ErrorAlertIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/AlphabeticList/__tests__/AlphabeticList.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/alertIcons/__tests__/AlarmAlertIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/SecondaryText/__tests__/DepartmentText.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/MultiSelectField/__tests__/MultiSelectField.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/status/StatusListItem/__tests__/StatusListItem.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/errorstate/PermissionPlay/__tests__/PermissionPlay.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/Icons/__tests__/ReadUnreadIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/dropdown/ToggleDropDown/__tests__/ToggleDropDown.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/FieldContainer/__tests__/FieldContainer.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/TextEditorField/__tests__/TextEditorField.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/errorstate/NoRequestFound/__tests__/NoRequestFound.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/alertIcons/__tests__/InfoAlertIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/errorstate/Inconvenience/__tests__/Inconvenience.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/SecondaryText/__tests__/SecondaryText.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/SecondryPanel/__tests__/SecondryPanel.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/avatar/AvatarWithTeam/__tests__/AvatarWithTeam.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/Icons/__tests__/FloatingIcons.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/errorstate/Inconvenience/__tests__/Inconvenience.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/SecondaryText/__tests__/PriorityText.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/Icons/__tests__/CompleteIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/ListStencils/__tests__/ListStencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/CurrencyField/__tests__/CurrencyField.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/GridStencils/__tests__/GridStencils.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/TextareaField/__tests__/TextareaField.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/layout/SubtabLayout/__tests__/SubtabLayout.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/ToastMessage/__tests__/ToastMessage.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/lookup/header/ViewDropDown/__test__/ViewDropDown.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/ActionButton/__tests__/ActionButton.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/TextBoxField/__tests__/TextBoxField.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/svg/__tests__/PlusIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/avatar/AvatarStatus/__tests__/AvatarStatus.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/avatar/AvatarThread/__tests__/AvatarThread.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/errorstate/UrlNotFound/__tests__/UrlNotFound.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/TagWithIcon/__tests__/TagWithIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/SecondaryText/__tests__/ContactName.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/SecondaryText/__tests__/AccountName.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/lookup/header/TicketHeader/__tests__/TicketHeader.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/SecondaryText/__tests__/PhoneNumber.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/emptystate/EditionPage/__tests__/EditionPage.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/setup/helptips/Description/__tests__/Description.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/lookup/AlertHeader/__tests__/AlertHeader.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/lookup/header/ModuleHeader/__tests__/ModuleHeader.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/avatar/AvatarClose/__tests__/AvatarClose.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/AlertClose/__tests__/AlertClose.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/SecondaryText/__tests__/StatusText.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/ChannelIcon/__tests__/ChannelIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/version2/alertIcons/__tests__/AlertIcons.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/ListLayout/__tests__/ListLayout.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/Icons/__tests__/AddNewIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/FormAction/__tests__/FormAction.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/Icons/__tests__/DeleteIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/PhoneField/__tests__/PhoneField.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/AvatarFlip/__tests__/AvatarFlip.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["rendering the defult props"]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/Attachment/__tests__/Attachment.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/avatar/AvatarUser/__tests__/AvatarUser.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/setup/table/TableBody/__tests__/TableBody.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/avatar/AvatarIcon/__tests__/AvatarIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/TextEditor/__tests__/TextEditor.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/setup/table/TableData/__tests__/TableData.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/setup/table/TableHead/__tests__/TableHead.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/Icons/__tests__/SmartIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/FlipCard/__tests__/FlipCard.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["rendering the defult props"]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/lookup/EmptyPage/__tests__/EmptyPage.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/SelectField/__tests__/SelectField.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/setup/table/TableRow/__tests__/TableRow.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/SecondaryText/__tests__/TicketId.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/SecondaryText/__tests__/Website.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/errorstate/WillBack/__tests__/WillBack.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/errorstate/LinkText/__tests__/LinkText.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/Icons/__tests__/EditIcon.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/Comment/__tests__/Comment.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/lookup/header/Close/__tests__/Close.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/lookup/Section/__tests__/Section.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/layout/Section/__tests__/Section.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/Thread/__tests__/Thread.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/Message/__tests__/Message.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/TagNew/__tests__/TagNew.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/Loader/__tests__/Loader.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/DotNew/__tests__/DotNew.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/setup/table/Table/__tests__/Table.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/setup/header/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/setup/header/Search/__tests__/Search.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/setup/helptips/Title/__tests__/Title.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/SecondaryText/__tests__/Email.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/lookup/header/Title/__tests__/Titles.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/fields/DateField/__tests__/DateField.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/Link/__tests__/Link.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/setup/header/Views/__tests__/Views.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/form/layout/Field/__tests__/Field.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/setup/helptips/Link/__tests__/Link.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/setup/header/Link/__tests__/Link.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}},{"fileName":"/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/Dot/__tests__/Dot.spec.js","CaseList":{"passedCaseList":["rendering the defult props"],"failedCaseList":[]}}]}}}
@@ -0,0 +1,45 @@
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
+ {
14
+ font-family: arial, sans-serif;
15
+ border-collapse: collapse;
16
+ }
17
+
18
+ td, th
19
+ {
20
+ border: 1px solid #dddddd;
21
+ padding: 8px;
22
+ }
23
+ </style>
24
+ </head>
25
+ <body>
26
+ <table>
27
+ <tr>
28
+ <th>Title</th>
29
+ <th>FullName</th>
30
+ <th>Test Case Path</th>
31
+ </tr>
32
+ <tr>
33
+ <td>rendering the defult props</td>
34
+ <td>AvatarFlip rendering the defult props</td>
35
+ <td>/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/list/AvatarFlip/__tests__/AvatarFlip.spec.js</td>
36
+ </tr>,<tr>
37
+ <td>rendering the defult props</td>
38
+ <td>FlipCard rendering the defult props</td>
39
+ <td>/Users/karuppiah-19823/Desktop/GitLab/client/desk-library/ComponentLib/jsapps/dot/dot/src/FlipCard/__tests__/FlipCard.spec.js</td>
40
+ </tr>
41
+ </table>
42
+ <br/>COVERAGE <span class="green">79.03%</span> <br/> less than 60% consider failure
43
+ </body>
44
+ </html>
45
+
@@ -1,4 +0,0 @@
1
- .audioImage {
2
- background-image: url('../../images/audio_thumbnail.png');
3
- background-repeat: no-repeat;
4
- }
@@ -1,4 +0,0 @@
1
- .audioImage {
2
- background-image: url('../../images/audio_thumbnail.png');
3
- background-repeat: no-repeat;
4
- }