@zohodesk/components 1.2.0 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cli/PropLessFiles.html +1 -1
- package/.cli/PropValidationExcludeFilesArray.js +1 -2
- package/.cli/propValidation_report.html +88 -83
- package/README.md +10 -0
- package/coverage/Button/Button.js.html +15 -3
- package/coverage/Button/css/Button.module.css.html +1 -1
- package/coverage/Button/css/cssJSLogic.js.html +1 -1
- package/coverage/Button/css/index.html +1 -1
- package/coverage/Button/index.html +1 -1
- package/coverage/Button/props/defaultProps.js.html +6 -3
- package/coverage/Button/props/index.html +1 -1
- package/coverage/Button/props/propTypes.js.html +1 -1
- package/coverage/Buttongroup/Buttongroup.js.html +1 -1
- package/coverage/Buttongroup/Buttongroup.module.css.html +1 -1
- package/coverage/Buttongroup/index.html +1 -1
- package/coverage/Buttongroup/props/defaultProps.js.html +1 -1
- package/coverage/Buttongroup/props/index.html +1 -1
- package/coverage/Buttongroup/props/propTypes.js.html +1 -1
- package/coverage/coverage-final.json +10 -10
- package/coverage/coverage-summary.json +10 -10
- package/coverage/index.html +1 -1
- package/coverage/utils/dummyFunction.js.html +1 -1
- package/coverage/utils/index.html +1 -1
- package/es/Button/Button.js +6 -2
- package/es/Button/props/defaultProps.js +2 -1
- package/es/DateTime/DateWidget.js +2 -1
- package/es/DropDown/DropDown.js +1 -7
- package/es/Heading/Heading.module.css +1 -1
- package/es/Label/Label.js +7 -2
- package/es/Label/props/propTypes.js +3 -0
- package/es/MultiSelect/AdvancedGroupMultiSelect.js +5 -2
- package/es/MultiSelect/AdvancedMultiSelect.js +2 -1
- package/es/MultiSelect/MultiSelectWithAvatar.js +2 -1
- package/es/Responsive/RefWrapper.js +2 -1
- package/es/Select/GroupSelect.js +1 -0
- package/es/Select/SelectWithAvatar.js +2 -1
- package/es/Select/SelectWithIcon.js +5 -2
- package/es/TextBox/TextBox.js +3 -3
- package/lib/Button/Button.js +6 -2
- package/lib/Button/props/defaultProps.js +2 -1
- package/lib/DateTime/DateWidget.js +2 -1
- package/lib/DropDown/DropDown.js +1 -6
- package/lib/Heading/Heading.module.css +1 -1
- package/lib/Label/Label.js +6 -2
- package/lib/Label/props/propTypes.js +3 -0
- package/lib/MultiSelect/AdvancedGroupMultiSelect.js +5 -3
- package/lib/MultiSelect/AdvancedMultiSelect.js +2 -1
- package/lib/MultiSelect/MultiSelectWithAvatar.js +2 -1
- package/lib/Responsive/RefWrapper.js +2 -1
- package/lib/Select/GroupSelect.js +1 -0
- package/lib/Select/SelectWithAvatar.js +2 -1
- package/lib/Select/SelectWithIcon.js +5 -3
- package/lib/TextBox/TextBox.js +10 -10
- package/package.json +6 -6
- package/result.json +1 -1
package/lib/DropDown/DropDown.js
CHANGED
|
@@ -67,12 +67,7 @@ var DropDown = /*#__PURE__*/function (_React$Component) {
|
|
|
67
67
|
}(_react["default"].Component);
|
|
68
68
|
|
|
69
69
|
exports["default"] = DropDown;
|
|
70
|
-
DropDown.propTypes = _propTypes.DropDown_propTypes;
|
|
71
|
-
// DropDown.docs = {
|
|
72
|
-
// componentGroup: 'Form Elements',
|
|
73
|
-
// folderName: 'Style Guide'
|
|
74
|
-
// };
|
|
75
|
-
// }
|
|
70
|
+
DropDown.propTypes = _propTypes.DropDown_propTypes;
|
|
76
71
|
|
|
77
72
|
var DropDownTarget = /*#__PURE__*/function (_React$Component2) {
|
|
78
73
|
_inherits(DropDownTarget, _React$Component2);
|
package/lib/Label/Label.js
CHANGED
|
@@ -66,7 +66,10 @@ var Label = /*#__PURE__*/function (_React$Component) {
|
|
|
66
66
|
dataSelectorId = _this$props.dataSelectorId,
|
|
67
67
|
variant = _this$props.variant,
|
|
68
68
|
customClass = _this$props.customClass,
|
|
69
|
-
id = _this$props.id
|
|
69
|
+
id = _this$props.id,
|
|
70
|
+
_this$props$a11y = _this$props.a11y,
|
|
71
|
+
a11y = _this$props$a11y === void 0 ? {} : _this$props$a11y;
|
|
72
|
+
var tabIndex = a11y.tabIndex;
|
|
70
73
|
return /*#__PURE__*/_react["default"].createElement("label", {
|
|
71
74
|
className: "".concat(_LabelModule["default"].label, " ").concat(_LabelModule["default"][type], " ").concat(_LabelModule["default"][size], " ").concat(_LabelColorsModule["default"][palette], " ").concat(_LabelModule["default"]["font_".concat(variant)], "\n ").concat(clipped ? _LabelModule["default"].dotted : '', " ").concat(onClick ? _LabelModule["default"].pointer : _LabelModule["default"].cursor, " ").concat(customClass, " "),
|
|
72
75
|
htmlFor: htmlFor,
|
|
@@ -75,7 +78,8 @@ var Label = /*#__PURE__*/function (_React$Component) {
|
|
|
75
78
|
"data-test-id": dataId,
|
|
76
79
|
"data-selector-id": dataSelectorId,
|
|
77
80
|
onClick: onClick,
|
|
78
|
-
id: id
|
|
81
|
+
id: id,
|
|
82
|
+
tabIndex: tabIndex
|
|
79
83
|
}, text);
|
|
80
84
|
}
|
|
81
85
|
}]);
|
|
@@ -22,6 +22,9 @@ var propTypes = {
|
|
|
22
22
|
type: _propTypes["default"].oneOf(['title', 'subtitle']),
|
|
23
23
|
variant: _propTypes["default"].oneOf(['primary', 'default']),
|
|
24
24
|
customClass: _propTypes["default"].string,
|
|
25
|
+
a11y: _propTypes["default"].shape({
|
|
26
|
+
tabIndex: _propTypes["default"].string
|
|
27
|
+
}),
|
|
25
28
|
id: _propTypes["default"].string
|
|
26
29
|
};
|
|
27
30
|
exports.propTypes = propTypes;
|
|
@@ -1153,13 +1153,15 @@ var AdvancedGroupMultiSelect = /*#__PURE__*/function (_React$Component) {
|
|
|
1153
1153
|
}(_react["default"].Component);
|
|
1154
1154
|
|
|
1155
1155
|
AdvancedGroupMultiSelect.defaultProps = _defaultProps.AdvancedGroupMultiSelect_defaultProps;
|
|
1156
|
-
AdvancedGroupMultiSelect.propTypes = _propTypes.AdvancedGroupMultiSelect_propTypes;
|
|
1156
|
+
AdvancedGroupMultiSelect.propTypes = _propTypes.AdvancedGroupMultiSelect_propTypes;
|
|
1157
|
+
var AdvancedGroupMultiSelectComponent = (0, _Popup["default"])(AdvancedGroupMultiSelect);
|
|
1158
|
+
AdvancedGroupMultiSelectComponent.defaultProps = AdvancedGroupMultiSelect.defaultProps;
|
|
1159
|
+
AdvancedGroupMultiSelectComponent.propTypes = AdvancedGroupMultiSelect.propTypes; // if (__DOCS__) {
|
|
1157
1160
|
// AdvancedGroupMultiSelect.docs = {
|
|
1158
1161
|
// componentGroup: 'Form Elements',
|
|
1159
1162
|
// folderName: 'Style Guide'
|
|
1160
1163
|
// };
|
|
1161
1164
|
// }
|
|
1162
1165
|
|
|
1163
|
-
var _default =
|
|
1164
|
-
|
|
1166
|
+
var _default = AdvancedGroupMultiSelectComponent;
|
|
1165
1167
|
exports["default"] = _default;
|
|
@@ -621,7 +621,8 @@ AdvancedMultiSelectComponent.propTypes = _propTypes.AdvancedMultiSelect_propType
|
|
|
621
621
|
AdvancedMultiSelectComponent.defaultProps = _defaultProps.AdvancedMultiSelect_defaultProps;
|
|
622
622
|
AdvancedMultiSelectComponent.displayName = 'AdvancedMultiSelect';
|
|
623
623
|
var AdvancedMultiSelect = (0, _Popup["default"])(AdvancedMultiSelectComponent);
|
|
624
|
-
AdvancedMultiSelect.defaultProps = AdvancedMultiSelectComponent.defaultProps;
|
|
624
|
+
AdvancedMultiSelect.defaultProps = AdvancedMultiSelectComponent.defaultProps;
|
|
625
|
+
AdvancedMultiSelect.propTypes = AdvancedMultiSelectComponent.propTypes; // if (__DOCS__) {
|
|
625
626
|
// AdvancedMultiSelectComponent.docs = {
|
|
626
627
|
// componentGroup: 'Form Elements',
|
|
627
628
|
// folderName: 'Style Guide'
|
|
@@ -352,7 +352,8 @@ MultiSelectWithAvatarComponent.propTypes = _propTypes.MultiSelectWithAvatar_prop
|
|
|
352
352
|
MultiSelectWithAvatarComponent.defaultProps = _defaultProps.MultiSelectWithAvatar_defaultProps;
|
|
353
353
|
MultiSelectWithAvatarComponent.displayName = 'MultiSelectWithAvatar';
|
|
354
354
|
var MultiSelectWithAvatar = (0, _Popup["default"])(MultiSelectWithAvatarComponent);
|
|
355
|
-
MultiSelectWithAvatar.defaultProps = MultiSelectWithAvatarComponent.defaultProps;
|
|
355
|
+
MultiSelectWithAvatar.defaultProps = MultiSelectWithAvatarComponent.defaultProps;
|
|
356
|
+
MultiSelectWithAvatar.propTypes = MultiSelectWithAvatarComponent.propTypes; // if (__DOCS__) {
|
|
356
357
|
// MultiSelectWithAvatarComponent.docs = {
|
|
357
358
|
// componentGroup: 'Form Elements',
|
|
358
359
|
// folderName: 'Style Guide'
|
|
@@ -49,7 +49,8 @@ DOMRefWrapper.defaultProps = {
|
|
|
49
49
|
domRefKey: 'eleRef'
|
|
50
50
|
};
|
|
51
51
|
DOMRefWrapper.propTypes = {
|
|
52
|
-
domRefKey: _propTypes["default"].any
|
|
52
|
+
domRefKey: _propTypes["default"].any,
|
|
53
|
+
children: _propTypes["default"].any
|
|
53
54
|
};
|
|
54
55
|
var _default = DOMRefWrapper;
|
|
55
56
|
exports["default"] = _default;
|
|
@@ -862,6 +862,7 @@ GroupSelectComponent.defaultProps = _defaultProps.GroupSelect_defaultProps;
|
|
|
862
862
|
GroupSelectComponent.displayName = 'GroupSelect';
|
|
863
863
|
var GroupSelect = (0, _Popup["default"])(GroupSelectComponent);
|
|
864
864
|
GroupSelect.defaultProps = GroupSelectComponent.defaultProps;
|
|
865
|
+
GroupSelect.propTypes = GroupSelectComponent.propTypes;
|
|
865
866
|
var _default = GroupSelect; // if (__DOCS__) {
|
|
866
867
|
// GroupSelect.docs = {
|
|
867
868
|
// componentGroup: 'Form Elements',
|
|
@@ -380,7 +380,8 @@ SelectWithAvatarComponent.propTypes = _propTypes.SelectWithAvatar_propTypes;
|
|
|
380
380
|
SelectWithAvatarComponent.defaultProps = _defaultProps.SelectWithAvatar_defaultProps;
|
|
381
381
|
SelectWithAvatarComponent.displayName = 'SelectWithAvatar';
|
|
382
382
|
var SelectWithAvatar = (0, _Popup["default"])(SelectWithAvatarComponent);
|
|
383
|
-
SelectWithAvatar.defaultProps = SelectWithAvatarComponent.defaultProps;
|
|
383
|
+
SelectWithAvatar.defaultProps = SelectWithAvatarComponent.defaultProps;
|
|
384
|
+
SelectWithAvatar.propTypes = SelectWithAvatarComponent.propTypes; // if (__DOCS__) {
|
|
384
385
|
// SelectWithAvatar.docs = {
|
|
385
386
|
// componentGroup: 'Form Elements',
|
|
386
387
|
// folderName: 'Style Guide'
|
|
@@ -581,13 +581,15 @@ var SelectWithIcon = /*#__PURE__*/function (_Component) {
|
|
|
581
581
|
}(_react.Component);
|
|
582
582
|
|
|
583
583
|
SelectWithIcon.propTypes = _propTypes.SelectWithIcon_propTypes;
|
|
584
|
-
SelectWithIcon.defaultProps = _defaultProps.SelectWithIcon_defaultProps;
|
|
584
|
+
SelectWithIcon.defaultProps = _defaultProps.SelectWithIcon_defaultProps;
|
|
585
|
+
var SelectWithIconComponent = (0, _Popup["default"])(SelectWithIcon);
|
|
586
|
+
SelectWithIconComponent.defaultProps = SelectWithIcon.defaultProps;
|
|
587
|
+
SelectWithIconComponent.propTypes = SelectWithIcon.propTypes; // if (__DOCS__) {
|
|
585
588
|
// SelectWithIcon.docs = {
|
|
586
589
|
// componentGroup: 'Form Elements',
|
|
587
590
|
// folderName: 'Style Guide'
|
|
588
591
|
// };
|
|
589
592
|
// }
|
|
590
593
|
|
|
591
|
-
var _default =
|
|
592
|
-
|
|
594
|
+
var _default = SelectWithIconComponent;
|
|
593
595
|
exports["default"] = _default;
|
package/lib/TextBox/TextBox.js
CHANGED
|
@@ -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
|
|
43
|
-
_inherits(
|
|
42
|
+
var TextBox = /*#__PURE__*/function (_React$PureComponent) {
|
|
43
|
+
_inherits(TextBox, _React$PureComponent);
|
|
44
44
|
|
|
45
|
-
var _super = _createSuper(
|
|
45
|
+
var _super = _createSuper(TextBox);
|
|
46
46
|
|
|
47
|
-
function
|
|
47
|
+
function TextBox(props) {
|
|
48
48
|
var _this;
|
|
49
49
|
|
|
50
|
-
_classCallCheck(this,
|
|
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(
|
|
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
|
|
213
|
+
return TextBox;
|
|
214
214
|
}(_react["default"].PureComponent);
|
|
215
215
|
|
|
216
|
-
exports["default"] =
|
|
217
|
-
|
|
218
|
-
|
|
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',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/components",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"main": "es/index.js",
|
|
5
5
|
"module": "es/index.js",
|
|
6
6
|
"private": false,
|
|
@@ -59,12 +59,12 @@
|
|
|
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.
|
|
63
|
-
"@zohodesk-private/css-variable-migrator": "^1.0.
|
|
62
|
+
"@zohodesk-private/react-prop-validator": "0.0.7",
|
|
63
|
+
"@zohodesk-private/css-variable-migrator": "^1.0.7",
|
|
64
64
|
"@zohodesk/a11y": "2.0.0",
|
|
65
65
|
"@zohodesk-private/node-plugins": "^1.0.0",
|
|
66
66
|
"@zohodesk/docstool": "1.0.0-alpha-2",
|
|
67
|
-
"@zohodesk/icons": "1.0.
|
|
67
|
+
"@zohodesk/icons": "1.0.1",
|
|
68
68
|
"@zohodesk/svg": "1.1.1",
|
|
69
69
|
"@zohodesk/variables": "1.0.0",
|
|
70
70
|
"@zohodesk/virtualizer": "1.0.3",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"selectn": "1.1.2"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
|
-
"@zohodesk/icons": "1.0.
|
|
83
|
+
"@zohodesk/icons": "1.0.1",
|
|
84
84
|
"@zohodesk/variables": "1.0.0",
|
|
85
85
|
"@zohodesk/svg": "1.1.1",
|
|
86
86
|
"@zohodesk/virtualizer": "1.0.3",
|
|
@@ -90,4 +90,4 @@
|
|
|
90
90
|
"@zohodesk/utils": "1.3.13",
|
|
91
91
|
"@zohodesk/a11y": "1.3.7"
|
|
92
92
|
}
|
|
93
|
-
}
|
|
93
|
+
}
|
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":1691427663165,"startTime":1691427659021,"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":[]}}]}}}
|
|
1
|
+
{"jobDetails":{"isRunByLocal":true,"hostName":"lakshmi-zt257","platForm":"Darwin","branchName":"Selva_Accessibility_Desk_Library"},"tests":{"unitCase":{"isExecuted":"Yes","numberOfSuccess":36,"numberOfFails":0,"numberOfCases":36,"numberOfSuites":2,"endTime":1692206555965,"startTime":1692206551873,"coverageDetail":{"codeCoveragePercentage":98.86,"fileCoveragePercentage":0},"fileDetails":[{"fileName":"/Users/lakshmi-zt257/Documents/Git/LibraryCheck/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/lakshmi-zt257/Documents/Git/LibraryCheck/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":[]}}]}}}
|