@zohodesk/components 1.2.1 → 1.2.3

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 (67) hide show
  1. package/.cli/PropLessFiles.html +1 -1
  2. package/.cli/PropValidationExcludeFilesArray.js +1 -2
  3. package/.cli/propValidation_report.html +1 -1
  4. package/README.md +12 -0
  5. package/assets/Appearance/dark/mode/Component_DarkMode.module.css +1 -0
  6. package/assets/Appearance/light/mode/Component_LightMode.module.css +1 -0
  7. package/assets/Appearance/pureDark/mode/Component_PureDarkMode.module.css +1 -0
  8. package/coverage/Button/Button.js.html +15 -3
  9. package/coverage/Button/css/Button.module.css.html +1 -1
  10. package/coverage/Button/css/cssJSLogic.js.html +1 -1
  11. package/coverage/Button/css/index.html +1 -1
  12. package/coverage/Button/index.html +1 -1
  13. package/coverage/Button/props/defaultProps.js.html +6 -3
  14. package/coverage/Button/props/index.html +1 -1
  15. package/coverage/Button/props/propTypes.js.html +9 -3
  16. package/coverage/Buttongroup/Buttongroup.js.html +1 -1
  17. package/coverage/Buttongroup/Buttongroup.module.css.html +1 -1
  18. package/coverage/Buttongroup/index.html +1 -1
  19. package/coverage/Buttongroup/props/defaultProps.js.html +1 -1
  20. package/coverage/Buttongroup/props/index.html +1 -1
  21. package/coverage/Buttongroup/props/propTypes.js.html +1 -1
  22. package/coverage/coverage-final.json +3 -3
  23. package/coverage/index.html +1 -1
  24. package/coverage/utils/dummyFunction.js.html +1 -1
  25. package/coverage/utils/index.html +1 -1
  26. package/es/Button/Button.js +6 -2
  27. package/es/Button/props/defaultProps.js +2 -1
  28. package/es/Button/props/propTypes.js +3 -1
  29. package/es/Heading/Heading.module.css +1 -1
  30. package/es/Label/Label.js +7 -2
  31. package/es/Label/props/propTypes.js +3 -0
  32. package/es/MultiSelect/AdvancedGroupMultiSelect.js +2 -3
  33. package/es/MultiSelect/AdvancedMultiSelect.js +2 -3
  34. package/es/MultiSelect/MobileHeader/MobileHeader.js +50 -0
  35. package/es/MultiSelect/MobileHeader/MobileHeader.module.css +16 -0
  36. package/es/MultiSelect/MobileHeader/props/defaultProps.js +7 -0
  37. package/es/MultiSelect/MobileHeader/props/propTypes.js +7 -0
  38. package/es/MultiSelect/MultiSelect.js +112 -91
  39. package/es/MultiSelect/MultiSelect.module.css +2 -5
  40. package/es/MultiSelect/MultiSelectHeader.js +1 -2
  41. package/es/MultiSelect/MultiSelectWithAvatar.js +14 -112
  42. package/es/MultiSelect/props/defaultProps.js +3 -1
  43. package/es/MultiSelect/props/propTypes.js +9 -57
  44. package/es/TextBox/TextBox.js +3 -3
  45. package/es/deprecated/PortalLayer/props/propTypes.js +3 -1
  46. package/lib/Button/Button.js +6 -2
  47. package/lib/Button/props/defaultProps.js +2 -1
  48. package/lib/Button/props/propTypes.js +3 -1
  49. package/lib/Heading/Heading.module.css +1 -1
  50. package/lib/Label/Label.js +6 -2
  51. package/lib/Label/props/propTypes.js +3 -0
  52. package/lib/MultiSelect/AdvancedGroupMultiSelect.js +2 -3
  53. package/lib/MultiSelect/AdvancedMultiSelect.js +2 -3
  54. package/lib/MultiSelect/MobileHeader/MobileHeader.js +62 -0
  55. package/lib/MultiSelect/MobileHeader/MobileHeader.module.css +16 -0
  56. package/lib/MultiSelect/MobileHeader/props/defaultProps.js +14 -0
  57. package/lib/MultiSelect/MobileHeader/props/propTypes.js +18 -0
  58. package/lib/MultiSelect/MultiSelect.js +116 -96
  59. package/lib/MultiSelect/MultiSelect.module.css +2 -5
  60. package/lib/MultiSelect/MultiSelectHeader.js +1 -2
  61. package/lib/MultiSelect/MultiSelectWithAvatar.js +17 -113
  62. package/lib/MultiSelect/props/defaultProps.js +3 -1
  63. package/lib/MultiSelect/props/propTypes.js +19 -60
  64. package/lib/TextBox/TextBox.js +10 -10
  65. package/lib/deprecated/PortalLayer/props/propTypes.js +3 -1
  66. package/package.json +8 -8
  67. package/result.json +1 -1
@@ -9,7 +9,13 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
9
9
 
10
10
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
11
11
 
12
- var AdvancedGroupMultiSelect_propTypes = {
12
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
13
+
14
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
15
+
16
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
17
+
18
+ var AdvancedGroupMultiSelect_propTypes = _defineProperty({
13
19
  animationStyle: _propTypes["default"].string,
14
20
  autoComplete: _propTypes["default"].bool,
15
21
  borderColor: _propTypes["default"].oneOf(['transparent', 'default']),
@@ -73,7 +79,8 @@ var AdvancedGroupMultiSelect_propTypes = {
73
79
  needToCloseOnSelect: _propTypes["default"].func,
74
80
  searchStr: _propTypes["default"].string,
75
81
  children: _propTypes["default"].node
76
- };
82
+ }, "dataSelectorId", _propTypes["default"].string);
83
+
77
84
  exports.AdvancedGroupMultiSelect_propTypes = AdvancedGroupMultiSelect_propTypes;
78
85
  var AdvancedMultiSelect_propTypes = {
79
86
  id: _propTypes["default"].string.isRequired,
@@ -177,7 +184,7 @@ var MultiSelect_propTypes = {
177
184
  borderColor: _propTypes["default"].oneOf(['transparent', 'default', 'dark']),
178
185
  closePopupOnly: _propTypes["default"].func,
179
186
  dataId: _propTypes["default"].string,
180
- defaultDropBoxPosition: _propTypes["default"].string,
187
+ defaultDropBoxPosition: _propTypes["default"].oneOf(['bottom', 'top', 'left', 'right']),
181
188
  disableAction: _propTypes["default"].bool,
182
189
  dropBoxSize: _propTypes["default"].oneOf(['small', 'medium', 'large']),
183
190
  emptyMessage: _propTypes["default"].string.isRequired,
@@ -210,7 +217,6 @@ var MultiSelect_propTypes = {
210
217
  needBorder: _propTypes["default"].bool,
211
218
  needLocalSearch: _propTypes["default"].bool,
212
219
  needResponsive: _propTypes["default"].bool,
213
- needSelectAll: _propTypes["default"].bool,
214
220
  needToCloseOnSelect: _propTypes["default"].bool,
215
221
  //For Group multiSelect
216
222
  noMoreOptionsMessage: _propTypes["default"].string,
@@ -232,7 +238,6 @@ var MultiSelect_propTypes = {
232
238
  removeClose: _propTypes["default"].func,
233
239
  searchDebounceTime: _propTypes["default"].number,
234
240
  searchEmptyMessage: _propTypes["default"].string,
235
- selectAllText: _propTypes["default"].string,
236
241
  selectedOptions: _propTypes["default"].arrayOf(_propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])).isRequired,
237
242
  size: _propTypes["default"].oneOf(['medium', 'xmedium']),
238
243
  textBoxClass: _propTypes["default"].string,
@@ -252,80 +257,34 @@ var MultiSelect_propTypes = {
252
257
  boxSize: _propTypes["default"].string,
253
258
  isLoading: _propTypes["default"].bool,
254
259
  dataSelectorId: _propTypes["default"].string,
255
- keepSelectedOptions: _propTypes["default"].bool
260
+ keepSelectedOptions: _propTypes["default"].bool,
261
+ needSelectAll: _propTypes["default"].bool,
262
+ selectAllText: _propTypes["default"].string,
263
+ setAriaId: _propTypes["default"].string,
264
+ ariaErrorId: _propTypes["default"].string
256
265
  };
257
266
  exports.MultiSelect_propTypes = MultiSelect_propTypes;
258
267
  var MultiSelectHeader_propTypes = {
259
268
  dataId: _propTypes["default"].string,
260
- needSelectAll: _propTypes["default"].bool,
261
269
  onSelect: _propTypes["default"].func,
262
270
  selectAllText: _propTypes["default"].string,
263
271
  suggestions: _propTypes["default"].array
264
272
  };
265
273
  exports.MultiSelectHeader_propTypes = MultiSelectHeader_propTypes;
266
- var MultiSelectWithAvatar_propTypes = {
267
- dropBoxSize: _propTypes["default"].oneOf(['small', 'medium', 'large']),
274
+
275
+ var MultiSelectWithAvatar_propTypes = _objectSpread({
268
276
  options: _propTypes["default"].oneOfType([_propTypes["default"].arrayOf(_propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])), _propTypes["default"].arrayOf(_propTypes["default"].shape({
269
277
  id: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number]),
270
278
  text: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number]),
271
279
  photoURL: _propTypes["default"].string
272
280
  }))]).isRequired,
273
- placeHolder: _propTypes["default"].string,
274
- emptyMessage: _propTypes["default"].string.isRequired,
275
- valueField: _propTypes["default"].string,
276
- textField: _propTypes["default"].string,
277
281
  imageField: _propTypes["default"].string,
278
- isReadOnly: _propTypes["default"].bool,
279
- needSelectAll: _propTypes["default"].bool,
280
- selectAllText: _propTypes["default"].string,
281
- defaultDropBoxPosition: _propTypes["default"].oneOf(['bottom', 'top', 'left', 'right']),
282
- searchEmptyMessage: _propTypes["default"].string,
283
- noMoreOptionsMessage: _propTypes["default"].string,
284
- isAnimate: _propTypes["default"].bool,
285
- animationStyle: _propTypes["default"].string,
286
- size: _propTypes["default"].oneOf(['medium', 'xmedium']),
287
- textBoxSize: _propTypes["default"].oneOf(['small', 'medium', 'xmedium']),
288
- variant: _propTypes["default"].string,
289
- isDisabled: _propTypes["default"].bool,
290
- title: _propTypes["default"].string,
291
- needResponsive: _propTypes["default"].bool,
292
- dataId: _propTypes["default"].string,
293
- borderColor: _propTypes["default"].oneOf(['transparent', 'default']),
294
- textBoxClass: _propTypes["default"].string,
295
- needBorder: _propTypes["default"].bool,
296
- disableAction: _propTypes["default"].bool,
297
- palette: _propTypes["default"].oneOf(['default', 'dark']),
298
- htmlId: _propTypes["default"].string,
299
- isBoxPaddingNeed: _propTypes["default"].bool,
300
- needEffect: _propTypes["default"].bool,
301
- keepSelectedOptions: _propTypes["default"].bool,
302
282
  customProps: _propTypes["default"].shape({
303
283
  SuggestionsProps: _propTypes["default"].object,
304
284
  DropBoxProps: _propTypes["default"].object
305
- }),
285
+ })
286
+ }, MultiSelect_propTypes);
306
287
 
307
- /**** Popup props ****/
308
- isPopupOpen: _propTypes["default"].bool,
309
- isPopupReady: _propTypes["default"].bool,
310
- removeClose: _propTypes["default"].func,
311
- position: _propTypes["default"].string,
312
- getContainerRef: _propTypes["default"].func,
313
- i18nKeys: _propTypes["default"].shape({
314
- clearText: _propTypes["default"].string,
315
- loadingText: _propTypes["default"].string,
316
- emptyText: _propTypes["default"].string,
317
- noMoreText: _propTypes["default"].string,
318
- searchEmptyText: _propTypes["default"].string
319
- }),
320
- a11y: _propTypes["default"].shape({
321
- clearLabel: _propTypes["default"].string
322
- }),
323
- children: _propTypes["default"].node,
324
- customChildrenClass: _propTypes["default"].string,
325
- disabledOptions: _propTypes["default"].arrayOf(_propTypes["default"].string),
326
- isLoading: _propTypes["default"].bool,
327
- dataSelectorId: _propTypes["default"].string
328
- };
329
288
  exports.MultiSelectWithAvatar_propTypes = MultiSelectWithAvatar_propTypes;
330
289
  var SelectedOptions_propTypes = {
331
290
  getRef: _propTypes["default"].func,
@@ -39,15 +39,15 @@ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Re
39
39
 
40
40
  function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
41
41
 
42
- var Textbox = /*#__PURE__*/function (_React$PureComponent) {
43
- _inherits(Textbox, _React$PureComponent);
42
+ var TextBox = /*#__PURE__*/function (_React$PureComponent) {
43
+ _inherits(TextBox, _React$PureComponent);
44
44
 
45
- var _super = _createSuper(Textbox);
45
+ var _super = _createSuper(TextBox);
46
46
 
47
- function Textbox(props) {
47
+ function TextBox(props) {
48
48
  var _this;
49
49
 
50
- _classCallCheck(this, Textbox);
50
+ _classCallCheck(this, TextBox);
51
51
 
52
52
  _this = _super.call(this, props);
53
53
  _this.onChange = _this.onChange.bind(_assertThisInitialized(_this));
@@ -58,7 +58,7 @@ var Textbox = /*#__PURE__*/function (_React$PureComponent) {
58
58
  return _this;
59
59
  }
60
60
 
61
- _createClass(Textbox, [{
61
+ _createClass(TextBox, [{
62
62
  key: "handleFocus",
63
63
  value: function handleFocus() {
64
64
  var _this$props = this.props,
@@ -210,12 +210,12 @@ var Textbox = /*#__PURE__*/function (_React$PureComponent) {
210
210
  }
211
211
  }]);
212
212
 
213
- return Textbox;
213
+ return TextBox;
214
214
  }(_react["default"].PureComponent);
215
215
 
216
- exports["default"] = Textbox;
217
- Textbox.defaultProps = _defaultProps.defaultProps;
218
- Textbox.propTypes = _propTypes.propTypes; // if (__DOCS__) {
216
+ exports["default"] = TextBox;
217
+ TextBox.defaultProps = _defaultProps.defaultProps;
218
+ TextBox.propTypes = _propTypes.propTypes; // if (__DOCS__) {
219
219
  // Textbox.docs = {
220
220
  // componentGroup: 'Form Elements',
221
221
  // folderName: 'Style Guide',
@@ -17,7 +17,9 @@ var propTypes = {
17
17
  portalId: _propTypes["default"].string,
18
18
  renderChildren: _propTypes["default"].func,
19
19
  saveGetFunction: _propTypes["default"].func,
20
- saveUpdateFunction: _propTypes["default"].func
20
+ saveUpdateFunction: _propTypes["default"].func,
21
+ isActive: _propTypes["default"].bool,
22
+ name: _propTypes["default"].string
21
23
  };
22
24
  exports.propTypes = propTypes;
23
25
  var RefElement_propTypes = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/components",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "main": "es/index.js",
5
5
  "module": "es/index.js",
6
6
  "private": false,
@@ -59,19 +59,19 @@
59
59
  "@testing-library/react-hooks": "^7.0.2",
60
60
  "@testing-library/user-event": "^13.0.10",
61
61
  "@zohodesk-private/color-variable-preprocessor": "1.0.6",
62
- "@zohodesk-private/react-prop-validator": "0.0.7",
63
62
  "@zohodesk-private/css-variable-migrator": "^1.0.7",
64
- "@zohodesk/a11y": "2.0.0",
65
63
  "@zohodesk-private/node-plugins": "^1.0.0",
64
+ "@zohodesk-private/react-prop-validator": "^0.1.0",
65
+ "@zohodesk/a11y": "2.0.0",
66
66
  "@zohodesk/docstool": "1.0.0-alpha-2",
67
- "@zohodesk/icons": "1.0.1",
67
+ "@zohodesk/hooks": "2.0.1",
68
+ "@zohodesk/icons": "1.0.2",
68
69
  "@zohodesk/svg": "1.1.1",
70
+ "@zohodesk/utils": "1.3.13",
69
71
  "@zohodesk/variables": "1.0.0",
70
72
  "@zohodesk/virtualizer": "1.0.3",
71
73
  "react-sortable-hoc": "^0.8.3",
72
- "velocity-react": "1.4.3",
73
- "@zohodesk/hooks": "2.0.1",
74
- "@zohodesk/utils": "1.3.13"
74
+ "velocity-react": "1.4.3"
75
75
  },
76
76
  "dependencies": {
77
77
  "hoist-non-react-statics": "3.0.1",
@@ -80,7 +80,7 @@
80
80
  "selectn": "1.1.2"
81
81
  },
82
82
  "peerDependencies": {
83
- "@zohodesk/icons": "1.0.1",
83
+ "@zohodesk/icons": "1.0.2",
84
84
  "@zohodesk/variables": "1.0.0",
85
85
  "@zohodesk/svg": "1.1.1",
86
86
  "@zohodesk/virtualizer": "1.0.3",
package/result.json CHANGED
@@ -1 +1 @@
1
- {"jobDetails":{"isRunByLocal":true,"hostName":"bharathi-zt93","platForm":"Darwin","branchName":"testcase_gowtham"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":36,"numberOfFails":0,"numberOfCases":36,"numberOfSuites":2,"endTime":1691775980589,"startTime":1691775978032,"coverageDetail":{"codeCoveragePercentage":98.86,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Popup/__tests__/Popup.spec.js","CaseList":{"passedCaseList":["should click same popup with removeClose","should open popup and close popup","should close another popup already one opened","should click document close opened popup","should click same popup with out removeClose","should click document close opened popup","should press esc key opened popup close"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/TextBox/__tests__/TextBox.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check onchange works","Check onBlur works","Check onFocus works"],"failedCaseList":["should display size small","should display size medium","should display size xmedium","should display size small - primary","should display size medium - primary","should display size xmedium - primary","should display size small - secondary","should display size medium - secondary","should display size xmedium - secondary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Textarea/__tests__/Textarea.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check border applied","Check border removed","Check check onchange works"],"failedCaseList":["should display size xsmall","should display size xsmall - primary","should display size small","should display size small - primary","should display size medium","should display size medium - primary","should display size large","should display size large - primary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Layout/__tests__/Container.spec.js","CaseList":{"passedCaseList":["Should contains the data-scroll is true","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should display initial","should display avatar image and initial while avatar loading...","should display initial if invalid url","should display image valid url","should the palette is default","should the palette is secondary","should the palette is info","should the shape is square","should the size is small","should the size is xsmall","should the size is xmedium","should the size is large","should the size is xlarge","should have title","should no need title"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["Display proper text","Check if clipped style is applied","Check if clipped style is not applied","Check for the prop title"],"failedCaseList":["Check for the prop name","should be having palette default","should be having palette primary","should be having palette secondary","should be having palette danger","should be having palette mandatory","should be having size small","should be having size medium","should be having size large","should be having type title","should be having type subtitle"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["should display text"],"failedCaseList":["should the palette is default","should the palette is danger","should the palette is secondary","should the palette is info","should the palette is primary","should the palette is dark","should the size is small","should the size is medium","should the size is large","should the size is xlarge","should the type is dafault","should the type is flag","should the type is plain","should the type is ribbon","should the type is box","should the type is stamp","should the type is sticker","should the type is tag"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Layout/__tests__/Box.spec.js","CaseList":{"passedCaseList":["Should contains the data-scroll is true","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/TextBoxIcon/__tests__/TextBoxIcon.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check onchange works","Check onBlur works","Check onFocus works"],"failedCaseList":["should display size small","should display size medium","should display size xmedium","should display size small - primary","should display size medium - primary","should display size xmedium - primary","should display size small - secondary","should display size medium - secondary","should display size xmedium - secondary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/__tests__/Tab.spec.js","CaseList":{"passedCaseList":["Is Contains alpha class","Is Contains beta class","Is Contains gamma class","Is Contains delta class","Is Contains active class","Is Contains border class","Is call onClick","is render text span"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Accordion/__tests__/Accordion.spec.js","CaseList":{"passedCaseList":["open accordion item id 1 ","open accordion item id 1 ","accordion item 2 click check","accordion click callback check "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropBox/__tests__/DropBox.spec.js","CaseList":{"passedCaseList":["Should Arrow element disable","Should call onclick container function"],"failedCaseList":["Should Arrow element visible","Should check render proper class name(hidden)","Should check render proper class name(size)","Should check render proper class name(boxPosition)","Should check render proper class name(isAnimate & isActive)","Should check render proper class name(isAnimate & isActive)","Should check render proper class name(arrowPosition)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tooltip/__tests__/Tooltip.spec.js","CaseList":{"passedCaseList":["Is HandleOver Executed","Is reset Executed","Is click & mouseUp Declared"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should display initial","should is filled","should the palette is secondary","should the palette is info","should the size is small","should the size is xsmall","should the size is xmedium","should the size is large","should the size is xlarge"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Buttongroup/__test__/Buttongroup.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should the type is footer","should the type is header","should the button position is left","should the button position is right","should the button position is center"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/__tests__/TabWrapper.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["is Tab rendered","is onSelect called","is disable State internally","change selectedTab id"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should the palette is primary","should the palette is secondary","should the size is small","should the size is medium","should the size is large","should the size is default","should the shape is rect","should the shape is circle"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/__tests__/TabContentWrapper.spec.js","CaseList":{"passedCaseList":["is children rendered class","is only selected TabContent rendered "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/__tests__/DropDownItem.spec.js","CaseList":{"passedCaseList":["Should check render proper class name(hightlight)","Should onClick method get called","Should onHover method get called"],"failedCaseList":["Should check render proper class name(active)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/__tests__/Tabs.spec.js","CaseList":{"passedCaseList":["isResponsive called"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Card/__tests__/Card.spec.js","CaseList":{"passedCaseList":["should display text"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/__tests__/DropDown.spec.js","CaseList":{"passedCaseList":["Should onScroll method get called","Should render children element in DropDownItemContainer","Should render children element in DropDownContainer","Should render children element in DropDownTarget"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/debounce.spec.js","CaseList":{"passedCaseList":["should call immediate","should call two times but it invoke multiple times","should call one time but it invoke multiple times"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/getInitial.spec.js","CaseList":{"passedCaseList":["first name alone","last name alone","first name and last name alone","last name with single character","first name and last name pattern","last name and first name pattern"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DateTime/__tests__/CalendarView.spec.js","CaseList":{"passedCaseList":["Should set date onSelecting date"],"failedCaseList":["Should call handleSelect with specified arguments"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Radio/__tests__/Radiospec.js","CaseList":{"passedCaseList":["Should display Text","Should call onChange"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/PopOver/__tests__/PopOver.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/constructFullName.spec.js","CaseList":{"passedCaseList":["firstname, lastname pattern","lastname firstname pattern"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tag/__tests__/Tag.spec.js","CaseList":{"passedCaseList":["Select Tag","Remove Tag"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Animation/__tests__/Animation.spec.js","CaseList":{"passedCaseList":["Animation component mount testcases"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/__tests__/TabContent.spec.js","CaseList":{"passedCaseList":["render TabContent"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Select/__tests__/Select.spec.js","CaseList":{"passedCaseList":["Select component with down arrow","Select component without down arrow","Select component with search box","Select component without search box","Should Show empty message","Should render suggestions, When popup open","Should not render suggestions, When popup close","Should popup open, When click textBox","Should popup open, When down arrow press","Should not popup open, When is readOnly component","Should not popup open, When is disabled component","Should Show search empty message","Should show loading and hide loading","Should call onChange, When select list item","Should not call onChange func, When is readonly component","Should call getNextOptions, When on reach boundary and isNextOptions is true","Should not call getNextOptions, When on reach boundary and isNextOptions is false","Should ignore excludeOptions","Should select defaultValue","Should not select defaultValue","Should active selected value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/CheckBox/__tests__/CheckBox.spec.js","CaseList":{"passedCaseList":["should display"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/__tests__/DropDownSearch.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["Should check render proper class name(size)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DateTime/__tests__/DateTime.spec.js","CaseList":{"passedCaseList":["Should call handleSelect onSetting date","Should call handleSelect onClearing date","Should display Time field if isDateTimeField is true","Should not display Time field if isDateTimeField is false"],"failedCaseList":["Should navigate to prevYear onClicking prevYear(<<)","Should navigate to prevMonth onClicking prevMonth(<)","Should navigate to nextMonth onClicking nextMonth(>)","Should navigate to nextYear onClicking nextYear(>>)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/MultiSelect/__tests__/MultiSelect.spec.js","CaseList":{"passedCaseList":["Should show loading and hide loading","Should display searchEmptyMessage","Should display noOptionsMessage","Should display noMoreOptionsMessage","Should display clear icon","Should not display clear icon, When is readonly field","Should not display clear icon, When is selected option is one","Should display select all option, When suggestions are more than 1","Should not display select all option"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DateTime/__tests__/DateWidget.spec.js","CaseList":{"passedCaseList":["Should not render dateTime if isReadOnly is true","Should render children if children is given","Should not render children if children is not given"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Textarea/___tests__/Textarea.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check border applied","Check border removed","Check check onchange works"],"failedCaseList":["should display size xsmall","should display size xsmall - primary","should display size small","should display size small - primary","should display size medium","should display size medium - primary","should display size large","should display size large - primary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/TextBox/___tests__/TextBox.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check onchange works","Check onBlur works","Check onFocus works"],"failedCaseList":["should display size small","should display size medium","should display size xmedium","should display size small - primary","should display size medium - primary","should display size xmedium - primary","should display size small - secondary","should display size medium - secondary","should display size xmedium - secondary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Avatar/___tests__/Avatar.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should display initial","should display avatar image and initial while avatar loading...","should display initial if invalid url","should display image valid url","should the palette is default","should the palette is secondary","should the palette is info","should the shape is square","should the size is small","should the size is xsmall","should the size is xmedium","should the size is large","should the size is xlarge","should have title","should no need title"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Popup/___tests__/Popup.spec.js","CaseList":{"passedCaseList":["should click same popup with removeClose","should open popup and close popup","should close another popup already one opened","should click document close opened popup","should click same popup with out removeClose","should click document close opened popup","should press esc key opened popup close"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Ribbon/___tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["should display text"],"failedCaseList":["should the palette is default","should the palette is danger","should the palette is secondary","should the palette is info","should the palette is primary","should the palette is dark","should the size is small","should the size is medium","should the size is large","should the size is xlarge","should the type is dafault","should the type is flag","should the type is plain","should the type is ribbon","should the type is box","should the type is stamp","should the type is sticker","should the type is tag"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Layout/___tests__/Container.spec.js","CaseList":{"passedCaseList":["Should contains the data-scroll is true","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Label/___tests__/Label.spec.js","CaseList":{"passedCaseList":["Display proper text","Check if clipped style is applied","Check if clipped style is not applied","Check for the prop title"],"failedCaseList":["Check for the prop name","should be having palette default","should be having palette primary","should be having palette secondary","should be having palette danger","should be having palette mandatory","should be having size small","should be having size medium","should be having size large","should be having type title","should be having type subtitle"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Layout/___tests__/Box.spec.js","CaseList":{"passedCaseList":["Should contains the data-scroll is true","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/TextBoxIcon/___tests__/TextBoxIcon.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check onchange works","Check onBlur works","Check onFocus works"],"failedCaseList":["should display size small","should display size medium","should display size xmedium","should display size small - primary","should display size medium - primary","should display size xmedium - primary","should display size small - secondary","should display size medium - secondary","should display size xmedium - secondary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Accordion/___tests__/Accordion.spec.js","CaseList":{"passedCaseList":["open accordion item id 1 ","open accordion item id 1 ","accordion item 2 click check","accordion click callback check "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/___tests__/Tab.spec.js","CaseList":{"passedCaseList":["Is Contains alpha class","Is Contains beta class","Is Contains gamma class","Is Contains delta class","Is Contains active class","Is Contains border class","Is call onClick","is render text span"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/AvatarTeam/___tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should display initial","should is filled","should the palette is secondary","should the palette is info","should the size is small","should the size is xsmall","should the size is xmedium","should the size is large","should the size is xlarge"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tooltip/___tests__/Tooltip.spec.js","CaseList":{"passedCaseList":["Is HandleOver Executed","Is reset Executed","Is click & mouseUp Declared"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Buttongroup/___test__/Buttongroup.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should the type is footer","should the type is header","should the button position is left","should the button position is right","should the button position is center"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Stencils/___tests__/Stencils.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should the palette is primary","should the palette is secondary","should the size is small","should the size is medium","should the size is large","should the size is default","should the shape is rect","should the shape is circle"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/___tests__/TabContentWrapper.spec.js","CaseList":{"passedCaseList":["is children rendered class","is only selected TabContent rendered "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropBox/___tests__/DropBox.spec.js","CaseList":{"passedCaseList":["Should Arrow element disable","Should call onclick container function"],"failedCaseList":["Should Arrow element visible","Should check render proper class name(hidden)","Should check render proper class name(size)","Should check render proper class name(boxPosition)","Should check render proper class name(isAnimate & isActive)","Should check render proper class name(isAnimate & isActive)","Should check render proper class name(arrowPosition)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/___tests__/DropDownItem.spec.js","CaseList":{"passedCaseList":["Should check render proper class name(hightlight)","Should onClick method get called","Should onHover method get called"],"failedCaseList":["Should check render proper class name(active)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/debounce.spec.js","CaseList":{"passedCaseList":["should call immediate","should call two times but it invoke multiple times","should call one time but it invoke multiple times"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/getInitial.spec.js","CaseList":{"passedCaseList":["first name alone","last name alone","first name and last name alone","last name with single character","first name and last name pattern","last name and first name pattern"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Card/___tests__/Card.spec.js","CaseList":{"passedCaseList":["should display text"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/___tests__/DropDown.spec.js","CaseList":{"passedCaseList":["Should onScroll method get called","Should render children element in DropDownItemContainer","Should render children element in DropDownContainer","Should render children element in DropDownTarget"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/constructFullName.spec.js","CaseList":{"passedCaseList":["firstname, lastname pattern","lastname firstname pattern"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tag/___tests__/Tag.spec.js","CaseList":{"passedCaseList":["Select Tag","Remove Tag"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/___tests__/Tabs.spec.js","CaseList":{"passedCaseList":["isResponsive called"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Animation/___tests__/Animation.spec.js","CaseList":{"passedCaseList":["Animation component mount testcases"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/___tests__/TabWrapper.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["is Tab rendered","is onSelect called","is disable State internally","change selectedTab id"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/___tests__/TabContent.spec.js","CaseList":{"passedCaseList":["render TabContent"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/___tests__/DropDownSearch.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["Should check render proper class name(size)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/CheckBox/___tests__/CheckBox.spec.js","CaseList":{"passedCaseList":["should display"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/PopOver/___tests__/PopOver.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/MultiSelect/___tests__/MultiSelect.spec.js","CaseList":{"passedCaseList":["Should show loading and hide loading","Should display searchEmptyMessage","Should display noOptionsMessage","Should display noMoreOptionsMessage","Should display clear icon","Should not display clear icon, When is readonly field","Should not display clear icon, When is selected option is one","Should display select all option, When suggestions are more than 1","Should not display select all option"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Select/___tests__/Select.spec.js","CaseList":{"passedCaseList":["Select component with down arrow","Select component without down arrow","Select component with search box","Select component without search box","Should Show empty message","Should render suggestions, When popup open","Should not render suggestions, When popup close","Should popup open, When click textBox","Should popup open, When down arrow press","Should not popup open, When is readOnly component","Should not popup open, When is disabled component","Should Show search empty message","Should show loading and hide loading","Should call onChange, When select list item","Should not call onChange func, When is readonly component","Should call getNextOptions, When on reach boundary and isNextOptions is true","Should not call getNextOptions, When on reach boundary and isNextOptions is false","Should ignore excludeOptions","Should select defaultValue","Should not select defaultValue","Should active selected value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}}]}}}
1
+ {"jobDetails":{"isRunByLocal":true,"hostName":"bharathi-zt93","platForm":"Darwin","branchName":"testcase_gowtham"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":36,"numberOfFails":0,"numberOfCases":36,"numberOfSuites":2,"endTime":1692276709231,"startTime":1692276706723,"coverageDetail":{"codeCoveragePercentage":98.86,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Popup/__tests__/Popup.spec.js","CaseList":{"passedCaseList":["should click same popup with removeClose","should open popup and close popup","should close another popup already one opened","should click document close opened popup","should click same popup with out removeClose","should click document close opened popup","should press esc key opened popup close"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/TextBox/__tests__/TextBox.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check onchange works","Check onBlur works","Check onFocus works"],"failedCaseList":["should display size small","should display size medium","should display size xmedium","should display size small - primary","should display size medium - primary","should display size xmedium - primary","should display size small - secondary","should display size medium - secondary","should display size xmedium - secondary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Textarea/__tests__/Textarea.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check border applied","Check border removed","Check check onchange works"],"failedCaseList":["should display size xsmall","should display size xsmall - primary","should display size small","should display size small - primary","should display size medium","should display size medium - primary","should display size large","should display size large - primary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Layout/__tests__/Container.spec.js","CaseList":{"passedCaseList":["Should contains the data-scroll is true","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Avatar/__tests__/Avatar.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should display initial","should display avatar image and initial while avatar loading...","should display initial if invalid url","should display image valid url","should the palette is default","should the palette is secondary","should the palette is info","should the shape is square","should the size is small","should the size is xsmall","should the size is xmedium","should the size is large","should the size is xlarge","should have title","should no need title"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Label/__tests__/Label.spec.js","CaseList":{"passedCaseList":["Display proper text","Check if clipped style is applied","Check if clipped style is not applied","Check for the prop title"],"failedCaseList":["Check for the prop name","should be having palette default","should be having palette primary","should be having palette secondary","should be having palette danger","should be having palette mandatory","should be having size small","should be having size medium","should be having size large","should be having type title","should be having type subtitle"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Ribbon/__tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["should display text"],"failedCaseList":["should the palette is default","should the palette is danger","should the palette is secondary","should the palette is info","should the palette is primary","should the palette is dark","should the size is small","should the size is medium","should the size is large","should the size is xlarge","should the type is dafault","should the type is flag","should the type is plain","should the type is ribbon","should the type is box","should the type is stamp","should the type is sticker","should the type is tag"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Layout/__tests__/Box.spec.js","CaseList":{"passedCaseList":["Should contains the data-scroll is true","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/TextBoxIcon/__tests__/TextBoxIcon.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check onchange works","Check onBlur works","Check onFocus works"],"failedCaseList":["should display size small","should display size medium","should display size xmedium","should display size small - primary","should display size medium - primary","should display size xmedium - primary","should display size small - secondary","should display size medium - secondary","should display size xmedium - secondary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/__tests__/Tab.spec.js","CaseList":{"passedCaseList":["Is Contains alpha class","Is Contains beta class","Is Contains gamma class","Is Contains delta class","Is Contains active class","Is Contains border class","Is call onClick","is render text span"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Accordion/__tests__/Accordion.spec.js","CaseList":{"passedCaseList":["open accordion item id 1 ","open accordion item id 1 ","accordion item 2 click check","accordion click callback check "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropBox/__tests__/DropBox.spec.js","CaseList":{"passedCaseList":["Should Arrow element disable","Should call onclick container function"],"failedCaseList":["Should Arrow element visible","Should check render proper class name(hidden)","Should check render proper class name(size)","Should check render proper class name(boxPosition)","Should check render proper class name(isAnimate & isActive)","Should check render proper class name(isAnimate & isActive)","Should check render proper class name(arrowPosition)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tooltip/__tests__/Tooltip.spec.js","CaseList":{"passedCaseList":["Is HandleOver Executed","Is reset Executed","Is click & mouseUp Declared"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/AvatarTeam/__tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should display initial","should is filled","should the palette is secondary","should the palette is info","should the size is small","should the size is xsmall","should the size is xmedium","should the size is large","should the size is xlarge"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Buttongroup/__test__/Buttongroup.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should the type is footer","should the type is header","should the button position is left","should the button position is right","should the button position is center"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/__tests__/TabWrapper.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["is Tab rendered","is onSelect called","is disable State internally","change selectedTab id"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Stencils/__tests__/Stencils.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should the palette is primary","should the palette is secondary","should the size is small","should the size is medium","should the size is large","should the size is default","should the shape is rect","should the shape is circle"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/__tests__/TabContentWrapper.spec.js","CaseList":{"passedCaseList":["is children rendered class","is only selected TabContent rendered "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/__tests__/DropDownItem.spec.js","CaseList":{"passedCaseList":["Should check render proper class name(hightlight)","Should onClick method get called","Should onHover method get called"],"failedCaseList":["Should check render proper class name(active)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/__tests__/Tabs.spec.js","CaseList":{"passedCaseList":["isResponsive called"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Card/__tests__/Card.spec.js","CaseList":{"passedCaseList":["should display text"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/__tests__/DropDown.spec.js","CaseList":{"passedCaseList":["Should onScroll method get called","Should render children element in DropDownItemContainer","Should render children element in DropDownContainer","Should render children element in DropDownTarget"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/debounce.spec.js","CaseList":{"passedCaseList":["should call immediate","should call two times but it invoke multiple times","should call one time but it invoke multiple times"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/getInitial.spec.js","CaseList":{"passedCaseList":["first name alone","last name alone","first name and last name alone","last name with single character","first name and last name pattern","last name and first name pattern"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DateTime/__tests__/CalendarView.spec.js","CaseList":{"passedCaseList":["Should set date onSelecting date"],"failedCaseList":["Should call handleSelect with specified arguments"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Radio/__tests__/Radiospec.js","CaseList":{"passedCaseList":["Should display Text","Should call onChange"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/PopOver/__tests__/PopOver.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/constructFullName.spec.js","CaseList":{"passedCaseList":["firstname, lastname pattern","lastname firstname pattern"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tag/__tests__/Tag.spec.js","CaseList":{"passedCaseList":["Select Tag","Remove Tag"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Animation/__tests__/Animation.spec.js","CaseList":{"passedCaseList":["Animation component mount testcases"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/__tests__/TabContent.spec.js","CaseList":{"passedCaseList":["render TabContent"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Select/__tests__/Select.spec.js","CaseList":{"passedCaseList":["Select component with down arrow","Select component without down arrow","Select component with search box","Select component without search box","Should Show empty message","Should render suggestions, When popup open","Should not render suggestions, When popup close","Should popup open, When click textBox","Should popup open, When down arrow press","Should not popup open, When is readOnly component","Should not popup open, When is disabled component","Should Show search empty message","Should show loading and hide loading","Should call onChange, When select list item","Should not call onChange func, When is readonly component","Should call getNextOptions, When on reach boundary and isNextOptions is true","Should not call getNextOptions, When on reach boundary and isNextOptions is false","Should ignore excludeOptions","Should select defaultValue","Should not select defaultValue","Should active selected value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/CheckBox/__tests__/CheckBox.spec.js","CaseList":{"passedCaseList":["should display"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/__tests__/DropDownSearch.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["Should check render proper class name(size)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DateTime/__tests__/DateTime.spec.js","CaseList":{"passedCaseList":["Should call handleSelect onSetting date","Should call handleSelect onClearing date","Should display Time field if isDateTimeField is true","Should not display Time field if isDateTimeField is false"],"failedCaseList":["Should navigate to prevYear onClicking prevYear(<<)","Should navigate to prevMonth onClicking prevMonth(<)","Should navigate to nextMonth onClicking nextMonth(>)","Should navigate to nextYear onClicking nextYear(>>)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/MultiSelect/__tests__/MultiSelect.spec.js","CaseList":{"passedCaseList":["Should show loading and hide loading","Should display searchEmptyMessage","Should display noOptionsMessage","Should display noMoreOptionsMessage","Should display clear icon","Should not display clear icon, When is readonly field","Should not display clear icon, When is selected option is one","Should display select all option, When suggestions are more than 1","Should not display select all option"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DateTime/__tests__/DateWidget.spec.js","CaseList":{"passedCaseList":["Should not render dateTime if isReadOnly is true","Should render children if children is given","Should not render children if children is not given"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Textarea/___tests__/Textarea.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check border applied","Check border removed","Check check onchange works"],"failedCaseList":["should display size xsmall","should display size xsmall - primary","should display size small","should display size small - primary","should display size medium","should display size medium - primary","should display size large","should display size large - primary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/TextBox/___tests__/TextBox.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check onchange works","Check onBlur works","Check onFocus works"],"failedCaseList":["should display size small","should display size medium","should display size xmedium","should display size small - primary","should display size medium - primary","should display size xmedium - primary","should display size small - secondary","should display size medium - secondary","should display size xmedium - secondary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Avatar/___tests__/Avatar.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should display initial","should display avatar image and initial while avatar loading...","should display initial if invalid url","should display image valid url","should the palette is default","should the palette is secondary","should the palette is info","should the shape is square","should the size is small","should the size is xsmall","should the size is xmedium","should the size is large","should the size is xlarge","should have title","should no need title"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Popup/___tests__/Popup.spec.js","CaseList":{"passedCaseList":["should click same popup with removeClose","should open popup and close popup","should close another popup already one opened","should click document close opened popup","should click same popup with out removeClose","should click document close opened popup","should press esc key opened popup close"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Ribbon/___tests__/Ribbon.spec.js","CaseList":{"passedCaseList":["should display text"],"failedCaseList":["should the palette is default","should the palette is danger","should the palette is secondary","should the palette is info","should the palette is primary","should the palette is dark","should the size is small","should the size is medium","should the size is large","should the size is xlarge","should the type is dafault","should the type is flag","should the type is plain","should the type is ribbon","should the type is box","should the type is stamp","should the type is sticker","should the type is tag"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Layout/___tests__/Container.spec.js","CaseList":{"passedCaseList":["Should contains the data-scroll is true","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Label/___tests__/Label.spec.js","CaseList":{"passedCaseList":["Display proper text","Check if clipped style is applied","Check if clipped style is not applied","Check for the prop title"],"failedCaseList":["Check for the prop name","should be having palette default","should be having palette primary","should be having palette secondary","should be having palette danger","should be having palette mandatory","should be having size small","should be having size medium","should be having size large","should be having type title","should be having type subtitle"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Layout/___tests__/Box.spec.js","CaseList":{"passedCaseList":["Should contains the data-scroll is true","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class","Should contains the default class"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/TextBoxIcon/___tests__/TextBoxIcon.spec.js","CaseList":{"passedCaseList":["should text propertly entered","should placeHolder propertly entered","Check onchange works","Check onBlur works","Check onFocus works"],"failedCaseList":["should display size small","should display size medium","should display size xmedium","should display size small - primary","should display size medium - primary","should display size xmedium - primary","should display size small - secondary","should display size medium - secondary","should display size xmedium - secondary"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Accordion/___tests__/Accordion.spec.js","CaseList":{"passedCaseList":["open accordion item id 1 ","open accordion item id 1 ","accordion item 2 click check","accordion click callback check "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/___tests__/Tab.spec.js","CaseList":{"passedCaseList":["Is Contains alpha class","Is Contains beta class","Is Contains gamma class","Is Contains delta class","Is Contains active class","Is Contains border class","Is call onClick","is render text span"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/AvatarTeam/___tests__/AvatarTeam.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should display initial","should is filled","should the palette is secondary","should the palette is info","should the size is small","should the size is xsmall","should the size is xmedium","should the size is large","should the size is xlarge"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tooltip/___tests__/Tooltip.spec.js","CaseList":{"passedCaseList":["Is HandleOver Executed","Is reset Executed","Is click & mouseUp Declared"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Buttongroup/___test__/Buttongroup.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should the type is footer","should the type is header","should the button position is left","should the button position is right","should the button position is center"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Stencils/___tests__/Stencils.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["should the palette is primary","should the palette is secondary","should the size is small","should the size is medium","should the size is large","should the size is default","should the shape is rect","should the shape is circle"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/___tests__/TabContentWrapper.spec.js","CaseList":{"passedCaseList":["is children rendered class","is only selected TabContent rendered "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropBox/___tests__/DropBox.spec.js","CaseList":{"passedCaseList":["Should Arrow element disable","Should call onclick container function"],"failedCaseList":["Should Arrow element visible","Should check render proper class name(hidden)","Should check render proper class name(size)","Should check render proper class name(boxPosition)","Should check render proper class name(isAnimate & isActive)","Should check render proper class name(isAnimate & isActive)","Should check render proper class name(arrowPosition)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/___tests__/DropDownItem.spec.js","CaseList":{"passedCaseList":["Should check render proper class name(hightlight)","Should onClick method get called","Should onHover method get called"],"failedCaseList":["Should check render proper class name(active)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/debounce.spec.js","CaseList":{"passedCaseList":["should call immediate","should call two times but it invoke multiple times","should call one time but it invoke multiple times"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/getInitial.spec.js","CaseList":{"passedCaseList":["first name alone","last name alone","first name and last name alone","last name with single character","first name and last name pattern","last name and first name pattern"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Card/___tests__/Card.spec.js","CaseList":{"passedCaseList":["should display text"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/___tests__/DropDown.spec.js","CaseList":{"passedCaseList":["Should onScroll method get called","Should render children element in DropDownItemContainer","Should render children element in DropDownContainer","Should render children element in DropDownTarget"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/utils/__tests__/constructFullName.spec.js","CaseList":{"passedCaseList":["firstname, lastname pattern","lastname firstname pattern"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tag/___tests__/Tag.spec.js","CaseList":{"passedCaseList":["Select Tag","Remove Tag"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/___tests__/Tabs.spec.js","CaseList":{"passedCaseList":["isResponsive called"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Animation/___tests__/Animation.spec.js","CaseList":{"passedCaseList":["Animation component mount testcases"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/___tests__/TabWrapper.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["is Tab rendered","is onSelect called","is disable State internally","change selectedTab id"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Tab/___tests__/TabContent.spec.js","CaseList":{"passedCaseList":["render TabContent"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/DropDown/___tests__/DropDownSearch.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["Should check render proper class name(size)"]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/CheckBox/___tests__/CheckBox.spec.js","CaseList":{"passedCaseList":["should display"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/PopOver/___tests__/PopOver.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/MultiSelect/___tests__/MultiSelect.spec.js","CaseList":{"passedCaseList":["Should show loading and hide loading","Should display searchEmptyMessage","Should display noOptionsMessage","Should display noMoreOptionsMessage","Should display clear icon","Should not display clear icon, When is readonly field","Should not display clear icon, When is selected option is one","Should display select all option, When suggestions are more than 1","Should not display select all option"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Select/___tests__/Select.spec.js","CaseList":{"passedCaseList":["Select component with down arrow","Select component without down arrow","Select component with search box","Select component without search box","Should Show empty message","Should render suggestions, When popup open","Should not render suggestions, When popup close","Should popup open, When click textBox","Should popup open, When down arrow press","Should not popup open, When is readOnly component","Should not popup open, When is disabled component","Should Show search empty message","Should show loading and hide loading","Should call onChange, When select list item","Should not call onChange func, When is readonly component","Should call getNextOptions, When on reach boundary and isNextOptions is true","Should not call getNextOptions, When on reach boundary and isNextOptions is false","Should ignore excludeOptions","Should select defaultValue","Should not select defaultValue","Should active selected value"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":[],"failedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Buttongroup/__tests__/Buttongroup.spec.js","CaseList":{"passedCaseList":["rendering the default props","rendering the \"buttonPosition\" to - left","rendering the \"buttonPosition\" to - right","rendering the \"buttonPosition\" to - center","Checking the \"customclass\"","rendering the \"type\" - footer","rendering the \"type\" - header","rendering the \"type\" - tab"],"failedCaseList":[]}},{"fileName":"/Users/bharathi-zt93/git/library/jsapps/dot/components/src/Button/__tests__/Button.spec.js","CaseList":{"passedCaseList":["Should be render with the basic set of default props","Should render palette of buttons - plainPrimary","Should render palette of buttons - plainSecondary","Should render palette of buttons - primary","Should render palette of buttons - primaryFilled","Should render palette of buttons - dangerFilled","Should render palette of buttons - secondary","Should render palette of buttons - secondaryFilled","Should render palette of buttons - successFilled","Should render palette of buttons - info","Should render palette of buttons - tertiaryFilled","Should render Sizes of buttons - small","Should render Sizes of buttons - medium","Should render Sizes of buttons - large","Should render Sizes of buttons - xlarge","Should render Status of buttons - loading","Should render Status of buttons - success","Should render Status of buttons - none","Should render CustomStatusclassname of buttons - loading","Should render CustomStatusclassname of buttons - success","Should be render with the basic set of default props with disabled is true","Should be render with the basic set of default props with isBold is false","Should be render with the basic set of default props with rounded is true","Should be render with the basic set of default props with needAppearance is false","Should be render with the basic set customButtonclass with buttonClass ","Should be render with the basic set customstatusSize props with buttonClass ","Should be render with the basic set customstyle ","Should be render with the customstyle with medium "],"failedCaseList":[]}}]}}}