@papillonarts/components 0.2.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/primer/Blankslate/Blankslate.js +32 -0
- package/build/primer/Blankslate/Blankslate.prop.js +23 -0
- package/build/primer/Blankslate/Blankslate.scss +93 -0
- package/build/primer/index.scss +6 -0
- package/package.json +6 -7
- package/build/.jest-test-results.json +0 -1
- package/build/packages/components/src/primer/Blankslate/Blankslate.js +0 -23
- package/build/packages/components/src/primer/Blankslate/Blankslate.prop.js +0 -18
- package/build/packages/components/src/primer/Blankslate/__tests__/Blankslate.int.story.js +0 -46
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.Blankslate = void 0;
|
|
8
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
9
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
|
10
|
+
var _Blankslate = require("./Blankslate.prop");
|
|
11
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
12
|
+
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
13
|
+
|
|
14
|
+
var styles = require('./Blankslate.scss')["default"];
|
|
15
|
+
var Blankslate = function Blankslate(_ref) {
|
|
16
|
+
var _cx;
|
|
17
|
+
var className = _ref.className,
|
|
18
|
+
heading = _ref.heading,
|
|
19
|
+
text = _ref.text,
|
|
20
|
+
variant = _ref.variant,
|
|
21
|
+
hasCleanBackground = _ref.hasCleanBackground;
|
|
22
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
23
|
+
className: (0, _classnames["default"])(className, styles.blankslate, (_cx = {}, (0, _defineProperty2["default"])(_cx, styles['blankslate-narrow'], variant === _Blankslate.blankslateVariantEnum.narrow), (0, _defineProperty2["default"])(_cx, styles['blankslate-capped'], variant === _Blankslate.blankslateVariantEnum.capped === true), (0, _defineProperty2["default"])(_cx, styles['blankslate-spacious'], variant === _Blankslate.blankslateVariantEnum.spacious), (0, _defineProperty2["default"])(_cx, styles['blankslate-large'], variant === _Blankslate.blankslateVariantEnum.large), (0, _defineProperty2["default"])(_cx, styles['blankslate-clean-background'], hasCleanBackground === true), _cx)),
|
|
24
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("h3", {
|
|
25
|
+
children: heading
|
|
26
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("p", {
|
|
27
|
+
children: text
|
|
28
|
+
})]
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
exports.Blankslate = Blankslate;
|
|
32
|
+
Blankslate.defaultProps = _Blankslate.defaultProps;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.defaultProps = exports.blankslateVariantEnum = void 0;
|
|
7
|
+
var blankslateVariantEnum = /*#__PURE__*/function (blankslateVariantEnum) {
|
|
8
|
+
blankslateVariantEnum[blankslateVariantEnum["default"] = 0] = "default";
|
|
9
|
+
blankslateVariantEnum[blankslateVariantEnum["narrow"] = 1] = "narrow";
|
|
10
|
+
blankslateVariantEnum[blankslateVariantEnum["capped"] = 2] = "capped";
|
|
11
|
+
blankslateVariantEnum[blankslateVariantEnum["spacious"] = 3] = "spacious";
|
|
12
|
+
blankslateVariantEnum[blankslateVariantEnum["large"] = 4] = "large";
|
|
13
|
+
return blankslateVariantEnum;
|
|
14
|
+
}({});
|
|
15
|
+
exports.blankslateVariantEnum = blankslateVariantEnum;
|
|
16
|
+
var defaultProps = {
|
|
17
|
+
className: null,
|
|
18
|
+
heading: '',
|
|
19
|
+
text: '',
|
|
20
|
+
variant: blankslateVariantEnum["default"],
|
|
21
|
+
hasCleanBackground: false
|
|
22
|
+
};
|
|
23
|
+
exports.defaultProps = defaultProps;
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
@import '~@papillonarts/css/build/primer/support/variables/layout.scss';
|
|
2
|
+
@import '~@papillonarts/css/build/primer/support/variables/typography.scss';
|
|
3
|
+
@import '~@papillonarts/css/build/primer/support/variables/misc.scss';
|
|
4
|
+
|
|
5
|
+
// stylelint-disable selector-max-type
|
|
6
|
+
.blankslate {
|
|
7
|
+
position: relative;
|
|
8
|
+
padding: $spacer-5;
|
|
9
|
+
text-align: center;
|
|
10
|
+
|
|
11
|
+
p {
|
|
12
|
+
color: var(--color-fg-muted);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
code {
|
|
16
|
+
// stylelint-disable-next-line primer/spacing
|
|
17
|
+
padding: 2px 5px 3px;
|
|
18
|
+
font-size: $h5-size;
|
|
19
|
+
background: var(--color-canvas-default);
|
|
20
|
+
border: $border-width $border-style var(--color-border-muted);
|
|
21
|
+
border-radius: $border-radius;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
img {
|
|
25
|
+
width: 56px;
|
|
26
|
+
height: 56px;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.blankslate-icon {
|
|
31
|
+
margin-right: $spacer-1;
|
|
32
|
+
margin-bottom: $spacer-2;
|
|
33
|
+
margin-left: $spacer-1;
|
|
34
|
+
color: var(--color-fg-muted);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.blankslate-image {
|
|
38
|
+
margin-bottom: $spacer-3;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.blankslate-heading {
|
|
42
|
+
margin-bottom: $spacer-1;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.blankslate-action {
|
|
46
|
+
margin-top: $spacer-3;
|
|
47
|
+
|
|
48
|
+
&:first-of-type {
|
|
49
|
+
margin-top: $spacer-4;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
&:last-of-type {
|
|
53
|
+
margin-bottom: $spacer-2;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.blankslate-capped {
|
|
58
|
+
border-radius: 0 0 $border-radius $border-radius;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.blankslate-spacious {
|
|
62
|
+
padding: ($spacer-6 * 2) $spacer-6;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.blankslate-narrow {
|
|
66
|
+
max-width: 485px;
|
|
67
|
+
margin: 0 auto;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// was .large-format
|
|
71
|
+
// QUESTION: should we deprecate this?
|
|
72
|
+
.blankslate-large {
|
|
73
|
+
img {
|
|
74
|
+
width: 80px;
|
|
75
|
+
height: 80px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
h3 {
|
|
79
|
+
margin: $spacer-3 0;
|
|
80
|
+
//font-size: $h3-size; // This doesn't actually make the text larger. Should this be $h2-size?
|
|
81
|
+
font-size: $h2-size;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
p {
|
|
85
|
+
font-size: $h4-size;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
// was .clean-background
|
|
90
|
+
// TO DO: deprecate this and use utility instead
|
|
91
|
+
.blankslate-clean-background {
|
|
92
|
+
border: 0;
|
|
93
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@papillonarts/components",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Papillon Arts Components",
|
|
5
5
|
"homepage": "https://github.com/papillonarts/papillonarts/tree/master/packages/components",
|
|
6
6
|
"repository": {
|
|
@@ -21,17 +21,16 @@
|
|
|
21
21
|
"remove-test-folders": "rm -rf src/**/**/__tests__ && rm -rf src/**/**/**/__tests__ && rm -rf src/primer/Concept",
|
|
22
22
|
"remove-snapshot-folders": "rm -rf src/**/**/__tests__/__snapshots__",
|
|
23
23
|
"remove-build-folder": "rm -rf build",
|
|
24
|
-
"transpile:js": "babel --extensions .js,.jsx --no-copy-ignored --out-dir build src --ignore **/__tests__",
|
|
25
|
-
"transpile:ts": "tsc",
|
|
24
|
+
"transpile:js:ts": "babel --extensions .js,.jsx,.ts,.tsx --copy-files --no-copy-ignored --out-dir build src --ignore **/__tests__",
|
|
26
25
|
"remove-markdown-files": "find build -maxdepth 3 -type f -name \"*.md\" -delete",
|
|
27
|
-
"build": "npm-run-all remove-snapshot-folders remove-build-folder transpile:js
|
|
26
|
+
"build": "npm-run-all remove-snapshot-folders remove-build-folder transpile:js:ts remove-markdown-files",
|
|
28
27
|
"build-test": "npm run build",
|
|
29
28
|
"build-acceptance": "npm run build",
|
|
30
29
|
"build-release": "npm run build"
|
|
31
30
|
},
|
|
32
31
|
"dependencies": {
|
|
33
|
-
"@papillonarts/css": "^0.
|
|
34
|
-
"@papillonarts/library": "^0.
|
|
32
|
+
"@papillonarts/css": "^0.4.0",
|
|
33
|
+
"@papillonarts/library": "^0.4.0"
|
|
35
34
|
},
|
|
36
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "bca2747b7aec32e9878eec7d3cef70798a03787c"
|
|
37
36
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{ "numFailedTestSuites": 0, "numFailedTests": 0, "numPassedTestSuites": 52, "numPassedTests": 265, "numPendingTestSuites": 0, "numPendingTests": 0, "numRuntimeErrorTestSuites": 0, "numTodoTests": 0, "numTotalTestSuites": 52, "numTotalTests": 265, "openHandles": [], "snapshot": { "added": 0, "didUpdate": false, "failure": true, "filesAdded": 0, "filesRemoved": 29, "filesRemovedList": ["/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Form/Radio/__tests__/__snapshots__/Radio.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Form/Input/__tests__/__snapshots__/Input.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Form/Checkbox/__tests__/__snapshots__/Checkbox.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Pagination/PreviousNext/__tests__/__snapshots__/PreviousNext.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Navigation/TabNav/__tests__/__snapshots__/TabNav.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Navigation/Menu/__tests__/__snapshots__/Menu.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Navigation/UnderlineNav/__tests__/__snapshots__/UnderlineNav.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/Monorepo/__tests__/__snapshots__/Monorepo.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/ComponentDrivenDevelopment/__tests__/__snapshots__/ComponentDrivenDevelopment.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/Compiling/__tests__/__snapshots__/Compiling.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/Bootstrap/__tests__/__snapshots__/Bootstrap.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/CrossBrowserCompatibility/__tests__/__snapshots__/CrossBrowserCompatibility.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/Runtime/__tests__/__snapshots__/Runtime.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/Language/__tests__/__snapshots__/Language.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/CSSArchitecture/__tests__/__snapshots__/CSSArchitecture.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/Microsite/__tests__/__snapshots__/Microsite.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/ContinuousDelivery/__tests__/__snapshots__/ContinuousDelivery.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/LocalDevelopment/__tests__/__snapshots__/LocalDevelopment.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/VersionControl/__tests__/__snapshots__/VersionControl.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/CodeStyle/__tests__/__snapshots__/CodeStyle.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/ContinuousIntegration/__tests__/__snapshots__/ContinuousIntegration.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/Rendering/__tests__/__snapshots__/Rendering.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/Routing/__tests__/__snapshots__/Routing.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/ComponentDesign/__tests__/__snapshots__/ComponentDesign.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/Testing/__tests__/__snapshots__/Testing.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/Accessibility/__tests__/__snapshots__/Accessibility.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Concept/ApplicationArchitecture/__tests__/__snapshots__/ApplicationArchitecture.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Grid/DisplayTable/__tests__/__snapshots__/DisplayTable.int.test.js.snap", "/Users/mts/PapillonAdsHub/papillonads/packages/components/build/primer/Grid/FlexGrid/__tests__/__snapshots__/FlexGrid.int.test.js.snap"], "filesUnmatched": 0, "filesUpdated": 0, "matched": 206, "total": 206, "unchecked": 0, "uncheckedKeysByFile": [], "unmatched": 0, "updated": 0 }, "startTime": 1648460228367, "success": false, "testResults": [{ "assertionResults": [{ "ancestorTitles": ["<Menu />", "Event"], "failureMessages": [], "fullName": "<Menu /> Event must return new items without index when onClick()", "location": null, "status": "passed", "title": "must return new items without index when onClick()" }, { "ancestorTitles": ["<Menu />", "Render"], "failureMessages": [], "fullName": "<Menu /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }, { "ancestorTitles": ["<Menu />", "Render"], "failureMessages": [], "fullName": "<Menu /> Render must match withIcons()", "location": null, "status": "passed", "title": "must match withIcons()" }, { "ancestorTitles": ["<Menu />", "Render"], "failureMessages": [], "fullName": "<Menu /> Render must match withHeading()", "location": null, "status": "passed", "title": "must match withHeading()" }, { "ancestorTitles": ["<Menu />", "State"], "failureMessages": [], "fullName": "<Menu /> State must reset new items with index when onClick()", "location": null, "status": "passed", "title": "must reset new items with index when onClick()" }], "endTime": 1648460245770, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Navigation/Menu/__tests__/Menu.int.test.js", "startTime": 1648460230461, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Dropdown />", "Event"], "failureMessages": [], "fullName": "<Dropdown /> Event must return new items without index when onClick()", "location": null, "status": "passed", "title": "must return new items without index when onClick()" }, { "ancestorTitles": ["<Dropdown />", "Render"], "failureMessages": [], "fullName": "<Dropdown /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }, { "ancestorTitles": ["<Dropdown />", "Render"], "failureMessages": [], "fullName": "<Dropdown /> Render must match inacive()", "location": null, "status": "passed", "title": "must match inacive()" }], "endTime": 1648460245769, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Dropdown/__tests__/Dropdown.int.test.js", "startTime": 1648460230529, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<SelectMenu />", "Event"], "failureMessages": [], "fullName": "<SelectMenu /> Event must return new items without index when onClick()", "location": null, "status": "passed", "title": "must return new items without index when onClick()" }, { "ancestorTitles": ["<SelectMenu />", "Render"], "failureMessages": [], "fullName": "<SelectMenu /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }, { "ancestorTitles": ["<SelectMenu />", "State"], "failureMessages": [], "fullName": "<SelectMenu /> State must reset new items with index when onClick()", "location": null, "status": "passed", "title": "must reset new items with index when onClick()" }], "endTime": 1648460245819, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/SelectMenu/__tests__/SelectMenu.int.test.js", "startTime": 1648460230368, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<TabNav />", "Event"], "failureMessages": [], "fullName": "<TabNav /> Event must return new items without index when regular items and onClick()", "location": null, "status": "passed", "title": "must return new items without index when regular items and onClick()" }, { "ancestorTitles": ["<TabNav />", "Event"], "failureMessages": [], "fullName": "<TabNav /> Event must return new items without index when navigation items and onClick()", "location": null, "status": "passed", "title": "must return new items without index when navigation items and onClick()" }, { "ancestorTitles": ["<TabNav />", "Event"], "failureMessages": [], "fullName": "<TabNav /> Event must return new items without index when mixed enabled visuble items and onClick()", "location": null, "status": "passed", "title": "must return new items without index when mixed enabled visuble items and onClick()" }, { "ancestorTitles": ["<TabNav />", "Render"], "failureMessages": [], "fullName": "<TabNav /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }, { "ancestorTitles": ["<TabNav />", "Render"], "failureMessages": [], "fullName": "<TabNav /> Render must match withButtonActions()", "location": null, "status": "passed", "title": "must match withButtonActions()" }, { "ancestorTitles": ["<TabNav />", "Render"], "failureMessages": [], "fullName": "<TabNav /> Render must match withTextActions()", "location": null, "status": "passed", "title": "must match withTextActions()" }, { "ancestorTitles": ["<TabNav />", "Render"], "failureMessages": [], "fullName": "<TabNav /> Render must match withLinkActions()", "location": null, "status": "passed", "title": "must match withLinkActions()" }, { "ancestorTitles": ["<TabNav />", "Render"], "failureMessages": [], "fullName": "<TabNav /> Render must match withNavigation()", "location": null, "status": "passed", "title": "must match withNavigation()" }, { "ancestorTitles": ["<TabNav />", "Render"], "failureMessages": [], "fullName": "<TabNav /> Render must match withMixedEnabledVisibleItems()", "location": null, "status": "passed", "title": "must match withMixedEnabledVisibleItems()" }, { "ancestorTitles": ["<TabNav />", "Render"], "failureMessages": [], "fullName": "<TabNav /> Render must match inactive()", "location": null, "status": "passed", "title": "must match inactive()" }], "endTime": 1648460245803, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Navigation/TabNav/__tests__/TabNav.int.test.js", "startTime": 1648460230474, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Popover />", "Event"], "failureMessages": [], "fullName": "<Popover /> Event must call introOnClick()", "location": null, "status": "passed", "title": "must call introOnClick()" }, { "ancestorTitles": ["<Popover />", "Event"], "failureMessages": [], "fullName": "<Popover /> Event must call acknowledgeOnClick()", "location": null, "status": "passed", "title": "must call acknowledgeOnClick()" }, { "ancestorTitles": ["<Popover />", "Render"], "failureMessages": [], "fullName": "<Popover /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }, { "ancestorTitles": ["<Popover />", "Render"], "failureMessages": [], "fullName": "<Popover /> Render must match regularLarge()", "location": null, "status": "passed", "title": "must match regularLarge()" }, { "ancestorTitles": ["<Popover />", "Render"], "failureMessages": [], "fullName": "<Popover /> Render must match bottom()", "location": null, "status": "passed", "title": "must match bottom()" }, { "ancestorTitles": ["<Popover />", "Render"], "failureMessages": [], "fullName": "<Popover /> Render must match bottomRight()", "location": null, "status": "passed", "title": "must match bottomRight()" }, { "ancestorTitles": ["<Popover />", "Render"], "failureMessages": [], "fullName": "<Popover /> Render must match bottomLeft()", "location": null, "status": "passed", "title": "must match bottomLeft()" }, { "ancestorTitles": ["<Popover />", "Render"], "failureMessages": [], "fullName": "<Popover /> Render must match left()", "location": null, "status": "passed", "title": "must match left()" }, { "ancestorTitles": ["<Popover />", "Render"], "failureMessages": [], "fullName": "<Popover /> Render must match leftBottom()", "location": null, "status": "passed", "title": "must match leftBottom()" }, { "ancestorTitles": ["<Popover />", "Render"], "failureMessages": [], "fullName": "<Popover /> Render must match leftTop()", "location": null, "status": "passed", "title": "must match leftTop()" }, { "ancestorTitles": ["<Popover />", "Render"], "failureMessages": [], "fullName": "<Popover /> Render must match right()", "location": null, "status": "passed", "title": "must match right()" }, { "ancestorTitles": ["<Popover />", "Render"], "failureMessages": [], "fullName": "<Popover /> Render must match rightBottom()", "location": null, "status": "passed", "title": "must match rightBottom()" }, { "ancestorTitles": ["<Popover />", "Render"], "failureMessages": [], "fullName": "<Popover /> Render must match rightTop()", "location": null, "status": "passed", "title": "must match rightTop()" }, { "ancestorTitles": ["<Popover />", "Render"], "failureMessages": [], "fullName": "<Popover /> Render must match topLeft()", "location": null, "status": "passed", "title": "must match topLeft()" }, { "ancestorTitles": ["<Popover />", "Render"], "failureMessages": [], "fullName": "<Popover /> Render must match topRight()", "location": null, "status": "passed", "title": "must match topRight()" }], "endTime": 1648460245806, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Popover/__tests__/Popover.int.test.js", "startTime": 1648460230531, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<UnderlineNav />", "Event"], "failureMessages": [], "fullName": "<UnderlineNav /> Event must return new items without index when button items and onClick()", "location": null, "status": "passed", "title": "must return new items without index when button items and onClick()" }, { "ancestorTitles": ["<UnderlineNav />", "Event"], "failureMessages": [], "fullName": "<UnderlineNav /> Event must return new items without index when anchor items and onClick()", "location": null, "status": "passed", "title": "must return new items without index when anchor items and onClick()" }, { "ancestorTitles": ["<UnderlineNav />", "Render"], "failureMessages": [], "fullName": "<UnderlineNav /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }, { "ancestorTitles": ["<UnderlineNav />", "Render"], "failureMessages": [], "fullName": "<UnderlineNav /> Render must match withActions()", "location": null, "status": "passed", "title": "must match withActions()" }, { "ancestorTitles": ["<UnderlineNav />", "Render"], "failureMessages": [], "fullName": "<UnderlineNav /> Render must match rightAligned()", "location": null, "status": "passed", "title": "must match rightAligned()" }, { "ancestorTitles": ["<UnderlineNav />", "Render"], "failureMessages": [], "fullName": "<UnderlineNav /> Render must match rightAlignedWithActions()", "location": null, "status": "passed", "title": "must match rightAlignedWithActions()" }, { "ancestorTitles": ["<UnderlineNav />", "Render"], "failureMessages": [], "fullName": "<UnderlineNav /> Render must match withIcons()", "location": null, "status": "passed", "title": "must match withIcons()" }, { "ancestorTitles": ["<UnderlineNav />", "Render"], "failureMessages": [], "fullName": "<UnderlineNav /> Render must match fullContainer()", "location": null, "status": "passed", "title": "must match fullContainer()" }, { "ancestorTitles": ["<UnderlineNav />", "State"], "failureMessages": [], "fullName": "<UnderlineNav /> State must reset new items with index when button items and onClick()", "location": null, "status": "passed", "title": "must reset new items with index when button items and onClick()" }, { "ancestorTitles": ["<UnderlineNav />", "State"], "failureMessages": [], "fullName": "<UnderlineNav /> State must reset new items with index when anchor items and onClick()", "location": null, "status": "passed", "title": "must reset new items with index when anchor items and onClick()" }], "endTime": 1648460245811, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Navigation/UnderlineNav/__tests__/UnderlineNav.int.test.js", "startTime": 1648460230422, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Button />", "Event"], "failureMessages": [], "fullName": "<Button /> Event must call onClick() when element button", "location": null, "status": "passed", "title": "must call onClick() when element button" }, { "ancestorTitles": ["<Button />", "Event"], "failureMessages": [], "fullName": "<Button /> Event must call onClick() when element a", "location": null, "status": "passed", "title": "must call onClick() when element a" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match defaultNormal()", "location": null, "status": "passed", "title": "must match defaultNormal()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match defaultSmall()", "location": null, "status": "passed", "title": "must match defaultSmall()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match defaultLarge()", "location": null, "status": "passed", "title": "must match defaultLarge()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match defaultInactive()", "location": null, "status": "passed", "title": "must match defaultInactive()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match defaultIconLeftAligned()", "location": null, "status": "passed", "title": "must match defaultIconLeftAligned()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match defaultIconRightAligned()", "location": null, "status": "passed", "title": "must match defaultIconRightAligned()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match defaultLink()", "location": null, "status": "passed", "title": "must match defaultLink()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match primary()", "location": null, "status": "passed", "title": "must match primary()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match primarySmall()", "location": null, "status": "passed", "title": "must match primarySmall()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match primaryLarge()", "location": null, "status": "passed", "title": "must match primaryLarge()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match primaryInactive()", "location": null, "status": "passed", "title": "must match primaryInactive()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match primaryIconLeftAligned()", "location": null, "status": "passed", "title": "must match primaryIconLeftAligned()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match primaryIconRightAligned()", "location": null, "status": "passed", "title": "must match primaryIconRightAligned()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match danger()", "location": null, "status": "passed", "title": "must match danger()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match dangerSmall()", "location": null, "status": "passed", "title": "must match dangerSmall()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match dangerLarge()", "location": null, "status": "passed", "title": "must match dangerLarge()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match dangerInactive()", "location": null, "status": "passed", "title": "must match dangerInactive()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match dangerIconLeftAligned()", "location": null, "status": "passed", "title": "must match dangerIconLeftAligned()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match dangerIconRightAligned()", "location": null, "status": "passed", "title": "must match dangerIconRightAligned()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match outline()", "location": null, "status": "passed", "title": "must match outline()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match outlineSmall()", "location": null, "status": "passed", "title": "must match outlineSmall()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match outlineLarge()", "location": null, "status": "passed", "title": "must match outlineLarge()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match outlineInactive()", "location": null, "status": "passed", "title": "must match outlineInactive()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match outlineIconLeftAligned()", "location": null, "status": "passed", "title": "must match outlineIconLeftAligned()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match outlineIconRightAligned()", "location": null, "status": "passed", "title": "must match outlineIconRightAligned()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match blue()", "location": null, "status": "passed", "title": "must match blue()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match blueSmall()", "location": null, "status": "passed", "title": "must match blueSmall()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match blueLarge()", "location": null, "status": "passed", "title": "must match blueLarge()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match blueInactive()", "location": null, "status": "passed", "title": "must match blueInactive()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match blueIconLeftAligned()", "location": null, "status": "passed", "title": "must match blueIconLeftAligned()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match blueIconRightAligned()", "location": null, "status": "passed", "title": "must match blueIconRightAligned()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match orange()", "location": null, "status": "passed", "title": "must match orange()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match orangeSmall()", "location": null, "status": "passed", "title": "must match orangeSmall()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match orangeLarge()", "location": null, "status": "passed", "title": "must match orangeLarge()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match orangeInactive()", "location": null, "status": "passed", "title": "must match orangeInactive()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match orangeIconLeftAligned()", "location": null, "status": "passed", "title": "must match orangeIconLeftAligned()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match orangeIconRightAligned()", "location": null, "status": "passed", "title": "must match orangeIconRightAligned()" }], "endTime": 1648460245909, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Button/__tests__/Button.int.test.js", "startTime": 1648460230423, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["index", "constants"], "failureMessages": [], "fullName": "index constants must return all pagination constants", "location": null, "status": "passed", "title": "must return all pagination constants" }, { "ancestorTitles": ["index", "paginate()"], "failureMessages": [], "fullName": "index paginate() must paginate array with page size and return items of given page number", "location": null, "status": "passed", "title": "must paginate array with page size and return items of given page number" }, { "ancestorTitles": ["index", "setNewIndexItemsOnMove()"], "failureMessages": [], "fullName": "index setNewIndexItemsOnMove() must not be able to move backwards when at start", "location": null, "status": "passed", "title": "must not be able to move backwards when at start" }, { "ancestorTitles": ["index", "setNewIndexItemsOnMove()"], "failureMessages": [], "fullName": "index setNewIndexItemsOnMove() must be able to move forward when at start", "location": null, "status": "passed", "title": "must be able to move forward when at start" }, { "ancestorTitles": ["index", "setNewIndexItemsOnMove()"], "failureMessages": [], "fullName": "index setNewIndexItemsOnMove() must not be able to move forward when at end", "location": null, "status": "passed", "title": "must not be able to move forward when at end" }, { "ancestorTitles": ["index", "setNewIndexItemsOnMove()"], "failureMessages": [], "fullName": "index setNewIndexItemsOnMove() must be able to move backwards when at end", "location": null, "status": "passed", "title": "must be able to move backwards when at end" }], "endTime": 1648460247060, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/library/src/pagination/__tests__/index.test.js", "startTime": 1648460245858, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["index", "getCurrentIndex()"], "failureMessages": [], "fullName": "index getCurrentIndex() must return current item index when there is a current item", "location": null, "status": "passed", "title": "must return current item index when there is a current item" }, { "ancestorTitles": ["index", "getCurrentIndex()"], "failureMessages": [], "fullName": "index getCurrentIndex() must return -1 when there is no current item", "location": null, "status": "passed", "title": "must return -1 when there is no current item" }, { "ancestorTitles": ["index", "getCurrentIndex()"], "failureMessages": [], "fullName": "index getCurrentIndex() must return -1 when there are no index items", "location": null, "status": "passed", "title": "must return -1 when there are no index items" }, { "ancestorTitles": ["index", "getIndexItems()"], "failureMessages": [], "fullName": "index getIndexItems() must return items with index when there are items", "location": null, "status": "passed", "title": "must return items with index when there are items" }, { "ancestorTitles": ["index", "getIndexItems()"], "failureMessages": [], "fullName": "index getIndexItems() must return empty array when items are empty", "location": null, "status": "passed", "title": "must return empty array when items are empty" }, { "ancestorTitles": ["index", "getIndexItems()"], "failureMessages": [], "fullName": "index getIndexItems() must return empty array when there are no items", "location": null, "status": "passed", "title": "must return empty array when there are no items" }, { "ancestorTitles": ["index", "getIndexItemsWithSelected()"], "failureMessages": [], "fullName": "index getIndexItemsWithSelected() must return index items with selected when there are items", "location": null, "status": "passed", "title": "must return index items with selected when there are items" }, { "ancestorTitles": ["index", "getIndexItemsWithSelected()"], "failureMessages": [], "fullName": "index getIndexItemsWithSelected() must return empty array when items are empty", "location": null, "status": "passed", "title": "must return empty array when items are empty" }, { "ancestorTitles": ["index", "getIndexItemsWithSelected()"], "failureMessages": [], "fullName": "index getIndexItemsWithSelected() must return empty array when there are no items", "location": null, "status": "passed", "title": "must return empty array when there are no items" }, { "ancestorTitles": ["index", "getRandomItemFromArray()"], "failureMessages": [], "fullName": "index getRandomItemFromArray() must return random item from array when array has items", "location": null, "status": "passed", "title": "must return random item from array when array has items" }, { "ancestorTitles": ["index", "getRandomItemFromArray()"], "failureMessages": [], "fullName": "index getRandomItemFromArray() must return undefined when array has no items", "location": null, "status": "passed", "title": "must return undefined when array has no items" }, { "ancestorTitles": ["index", "getRange()"], "failureMessages": [], "fullName": "index getRange() must return range without index seed and without value seed", "location": null, "status": "passed", "title": "must return range without index seed and without value seed" }, { "ancestorTitles": ["index", "getRange()"], "failureMessages": [], "fullName": "index getRange() must return range with index seed and without value seed", "location": null, "status": "passed", "title": "must return range with index seed and without value seed" }, { "ancestorTitles": ["index", "getRange()"], "failureMessages": [], "fullName": "index getRange() must return range without index seed and with value seed", "location": null, "status": "passed", "title": "must return range without index seed and with value seed" }, { "ancestorTitles": ["index", "getRange()"], "failureMessages": [], "fullName": "index getRange() must return range with index seed and with value seed", "location": null, "status": "passed", "title": "must return range with index seed and with value seed" }], "endTime": 1648460247192, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/library/src/array/__tests__/index.test.js", "startTime": 1648460245837, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<ApplicationArchitecture />", "Render"], "failureMessages": [], "fullName": "<ApplicationArchitecture /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<ApplicationArchitecture />", "Render"], "failureMessages": [], "fullName": "<ApplicationArchitecture /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<ApplicationArchitecture />", "Render"], "failureMessages": [], "fullName": "<ApplicationArchitecture /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<ApplicationArchitecture />", "Render"], "failureMessages": [], "fullName": "<ApplicationArchitecture /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460247297, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/ApplicationArchitecture/__tests__/ApplicationArchitecture.int.test.js", "startTime": 1648460246062, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<ContinuousIntegration />", "Render"], "failureMessages": [], "fullName": "<ContinuousIntegration /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<ContinuousIntegration />", "Render"], "failureMessages": [], "fullName": "<ContinuousIntegration /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<ContinuousIntegration />", "Render"], "failureMessages": [], "fullName": "<ContinuousIntegration /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<ContinuousIntegration />", "Render"], "failureMessages": [], "fullName": "<ContinuousIntegration /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460247306, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/ContinuousIntegration/__tests__/ContinuousIntegration.int.test.js", "startTime": 1648460246060, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<LocalDevelopment />", "Render"], "failureMessages": [], "fullName": "<LocalDevelopment /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<LocalDevelopment />", "Render"], "failureMessages": [], "fullName": "<LocalDevelopment /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<LocalDevelopment />", "Render"], "failureMessages": [], "fullName": "<LocalDevelopment /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<LocalDevelopment />", "Render"], "failureMessages": [], "fullName": "<LocalDevelopment /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460247310, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/LocalDevelopment/__tests__/LocalDevelopment.int.test.js", "startTime": 1648460246117, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Select />", "Event"], "failureMessages": [], "fullName": "<Select /> Event must return new items without index when onChange()", "location": null, "status": "passed", "title": "must return new items without index when onChange()" }, { "ancestorTitles": ["<Select />", "Render"], "failureMessages": [], "fullName": "<Select /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }, { "ancestorTitles": ["<Select />", "Render"], "failureMessages": [], "fullName": "<Select /> Render must match inacive()", "location": null, "status": "passed", "title": "must match inacive()" }], "endTime": 1648460247488, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Select/__tests__/Select.int.test.js", "startTime": 1648460246064, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<FlexGrid />", "Render"], "failureMessages": [], "fullName": "<FlexGrid /> Render must match radioWithSelection()", "location": null, "status": "passed", "title": "must match radioWithSelection()" }, { "ancestorTitles": ["<FlexGrid />", "Render"], "failureMessages": [], "fullName": "<FlexGrid /> Render must match radioWithSelectionInactive()", "location": null, "status": "passed", "title": "must match radioWithSelectionInactive()" }, { "ancestorTitles": ["<FlexGrid />", "Render"], "failureMessages": [], "fullName": "<FlexGrid /> Render must match radioWithoutSelection()", "location": null, "status": "passed", "title": "must match radioWithoutSelection()" }, { "ancestorTitles": ["<FlexGrid />", "Render"], "failureMessages": [], "fullName": "<FlexGrid /> Render must match radioWithoutSelectionInactive()", "location": null, "status": "passed", "title": "must match radioWithoutSelectionInactive()" }, { "ancestorTitles": ["<FlexGrid />", "Render"], "failureMessages": [], "fullName": "<FlexGrid /> Render must match checkboxWithSelection()", "location": null, "status": "passed", "title": "must match checkboxWithSelection()" }, { "ancestorTitles": ["<FlexGrid />", "Render"], "failureMessages": [], "fullName": "<FlexGrid /> Render must match checkboxWithSelectionInactive()", "location": null, "status": "passed", "title": "must match checkboxWithSelectionInactive()" }, { "ancestorTitles": ["<FlexGrid />", "Render"], "failureMessages": [], "fullName": "<FlexGrid /> Render must match checkboxWithoutSelection()", "location": null, "status": "passed", "title": "must match checkboxWithoutSelection()" }, { "ancestorTitles": ["<FlexGrid />", "Render"], "failureMessages": [], "fullName": "<FlexGrid /> Render must match checkboxWithoutSelectionInactive()", "location": null, "status": "passed", "title": "must match checkboxWithoutSelectionInactive()" }], "endTime": 1648460247590, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Grid/FlexGrid/__tests__/FlexGrid.int.test.js", "startTime": 1648460246056, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<PreviousNext />", "Event"], "failureMessages": [], "fullName": "<PreviousNext /> Event must return new items without index when previous onClick()", "location": null, "status": "passed", "title": "must return new items without index when previous onClick()" }, { "ancestorTitles": ["<PreviousNext />", "Event"], "failureMessages": [], "fullName": "<PreviousNext /> Event must return new items without index when next onClick()", "location": null, "status": "passed", "title": "must return new items without index when next onClick()" }, { "ancestorTitles": ["<PreviousNext />", "Render"], "failureMessages": [], "fullName": "<PreviousNext /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }, { "ancestorTitles": ["<PreviousNext />", "Render"], "failureMessages": [], "fullName": "<PreviousNext /> Render must match inactive()", "location": null, "status": "passed", "title": "must match inactive()" }], "endTime": 1648460248762, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Pagination/PreviousNext/__tests__/PreviousNext.int.test.js", "startTime": 1648460247105, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<ContinuousDelivery />", "Render"], "failureMessages": [], "fullName": "<ContinuousDelivery /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<ContinuousDelivery />", "Render"], "failureMessages": [], "fullName": "<ContinuousDelivery /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<ContinuousDelivery />", "Render"], "failureMessages": [], "fullName": "<ContinuousDelivery /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<ContinuousDelivery />", "Render"], "failureMessages": [], "fullName": "<ContinuousDelivery /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460248873, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/ContinuousDelivery/__tests__/ContinuousDelivery.int.test.js", "startTime": 1648460247359, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Input />", "Event"], "failureMessages": [], "fullName": "<Input /> Event must handle event when onChange()", "location": null, "status": "passed", "title": "must handle event when onChange()" }, { "ancestorTitles": ["<Input />", "Event"], "failureMessages": [], "fullName": "<Input /> Event must handle event when onKeyUp()", "location": null, "status": "passed", "title": "must handle event when onKeyUp()" }, { "ancestorTitles": ["<Input />", "Event"], "failureMessages": [], "fullName": "<Input /> Event must handle event when onFocus()", "location": null, "status": "passed", "title": "must handle event when onFocus()" }, { "ancestorTitles": ["<Input />", "Event"], "failureMessages": [], "fullName": "<Input /> Event must handle event when onBlur()", "location": null, "status": "passed", "title": "must handle event when onBlur()" }, { "ancestorTitles": ["<Input />", "Render"], "failureMessages": [], "fullName": "<Input /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }, { "ancestorTitles": ["<Input />", "Render"], "failureMessages": [], "fullName": "<Input /> Render must match inactive()", "location": null, "status": "passed", "title": "must match inactive()" }], "endTime": 1648460248998, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Form/Input/__tests__/Input.int.test.js", "startTime": 1648460247317, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<ComponentDesign />", "Render"], "failureMessages": [], "fullName": "<ComponentDesign /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<ComponentDesign />", "Render"], "failureMessages": [], "fullName": "<ComponentDesign /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<ComponentDesign />", "Render"], "failureMessages": [], "fullName": "<ComponentDesign /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<ComponentDesign />", "Render"], "failureMessages": [], "fullName": "<ComponentDesign /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460249049, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/ComponentDesign/__tests__/ComponentDesign.int.test.js", "startTime": 1648460247569, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<CSSArchitecture />", "Render"], "failureMessages": [], "fullName": "<CSSArchitecture /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<CSSArchitecture />", "Render"], "failureMessages": [], "fullName": "<CSSArchitecture /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<CSSArchitecture />", "Render"], "failureMessages": [], "fullName": "<CSSArchitecture /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<CSSArchitecture />", "Render"], "failureMessages": [], "fullName": "<CSSArchitecture /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460249439, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/CSSArchitecture/__tests__/CSSArchitecture.int.test.js", "startTime": 1648460247661, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Breadcrumb />", "Event"], "failureMessages": [], "fullName": "<Breadcrumb /> Event must return new items without index when onClick()", "location": null, "status": "passed", "title": "must return new items without index when onClick()" }, { "ancestorTitles": ["<Breadcrumb />", "Render"], "failureMessages": [], "fullName": "<Breadcrumb /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }, { "ancestorTitles": ["<Breadcrumb />", "Render"], "failureMessages": [], "fullName": "<Breadcrumb /> Render must match inactive()", "location": null, "status": "passed", "title": "must match inactive()" }], "endTime": 1648460249511, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Breadcrumb/__tests__/Breadcrumb.int.test.js", "startTime": 1648460247555, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Checkbox />", "Event"], "failureMessages": [], "fullName": "<Checkbox /> Event must handle event when onChange()", "location": null, "status": "passed", "title": "must handle event when onChange()" }, { "ancestorTitles": ["<Checkbox />", "Render"], "failureMessages": [], "fullName": "<Checkbox /> Render must match isChecked()", "location": null, "status": "passed", "title": "must match isChecked()" }, { "ancestorTitles": ["<Checkbox />", "Render"], "failureMessages": [], "fullName": "<Checkbox /> Render must match isCheckedInactive()", "location": null, "status": "passed", "title": "must match isCheckedInactive()" }, { "ancestorTitles": ["<Checkbox />", "Render"], "failureMessages": [], "fullName": "<Checkbox /> Render must match isNotChecked()", "location": null, "status": "passed", "title": "must match isNotChecked()" }, { "ancestorTitles": ["<Checkbox />", "Render"], "failureMessages": [], "fullName": "<Checkbox /> Render must match isNotCheckedInactive()", "location": null, "status": "passed", "title": "must match isNotCheckedInactive()" }], "endTime": 1648460249591, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Form/Checkbox/__tests__/Checkbox.int.test.js", "startTime": 1648460247621, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<ComponentDrivenDevelopment />", "Render"], "failureMessages": [], "fullName": "<ComponentDrivenDevelopment /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<ComponentDrivenDevelopment />", "Render"], "failureMessages": [], "fullName": "<ComponentDrivenDevelopment /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<ComponentDrivenDevelopment />", "Render"], "failureMessages": [], "fullName": "<ComponentDrivenDevelopment /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<ComponentDrivenDevelopment />", "Render"], "failureMessages": [], "fullName": "<ComponentDrivenDevelopment /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460250493, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/ComponentDrivenDevelopment/__tests__/ComponentDrivenDevelopment.int.test.js", "startTime": 1648460248771, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["index", "isBrowser"], "failureMessages": [], "fullName": "index isBrowser must return true when there is a window object", "location": null, "status": "passed", "title": "must return true when there is a window object" }, { "ancestorTitles": ["index", "isBrowser"], "failureMessages": [], "fullName": "index isBrowser must return false when there is no window object", "location": null, "status": "passed", "title": "must return false when there is no window object" }], "endTime": 1648460250517, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/library/src/browser/__tests__/index.test.js", "startTime": 1648460249073, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Button />", "Event"], "failureMessages": [], "fullName": "<Button /> Event must call onClick() when isDismissable", "location": null, "status": "passed", "title": "must call onClick() when isDismissable" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match info()", "location": null, "status": "passed", "title": "must match info()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match success()", "location": null, "status": "passed", "title": "must match success()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match warning()", "location": null, "status": "passed", "title": "must match warning()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match error()", "location": null, "status": "passed", "title": "must match error()" }, { "ancestorTitles": ["<Button />", "Render"], "failureMessages": [], "fullName": "<Button /> Render must match dismissable()", "location": null, "status": "passed", "title": "must match dismissable()" }], "endTime": 1648460250763, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Toast/__tests__/Toast.int.test.js", "startTime": 1648460248879, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<CrossBrowserCompatibility />", "Render"], "failureMessages": [], "fullName": "<CrossBrowserCompatibility /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<CrossBrowserCompatibility />", "Render"], "failureMessages": [], "fullName": "<CrossBrowserCompatibility /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<CrossBrowserCompatibility />", "Render"], "failureMessages": [], "fullName": "<CrossBrowserCompatibility /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<CrossBrowserCompatibility />", "Render"], "failureMessages": [], "fullName": "<CrossBrowserCompatibility /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460250788, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/CrossBrowserCompatibility/__tests__/CrossBrowserCompatibility.int.test.js", "startTime": 1648460249008, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<VersionControl />", "Render"], "failureMessages": [], "fullName": "<VersionControl /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<VersionControl />", "Render"], "failureMessages": [], "fullName": "<VersionControl /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<VersionControl />", "Render"], "failureMessages": [], "fullName": "<VersionControl /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<VersionControl />", "Render"], "failureMessages": [], "fullName": "<VersionControl /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460250970, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/VersionControl/__tests__/VersionControl.int.test.js", "startTime": 1648460249521, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Alert />", "Render"], "failureMessages": [], "fullName": "<Alert /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }, { "ancestorTitles": ["<Alert />", "Render"], "failureMessages": [], "fullName": "<Alert /> Render must match regularMultipleParagraphs()", "location": null, "status": "passed", "title": "must match regularMultipleParagraphs()" }, { "ancestorTitles": ["<Alert />", "Render"], "failureMessages": [], "fullName": "<Alert /> Render must match info()", "location": null, "status": "passed", "title": "must match info()" }, { "ancestorTitles": ["<Alert />", "Render"], "failureMessages": [], "fullName": "<Alert /> Render must match warning()", "location": null, "status": "passed", "title": "must match warning()" }, { "ancestorTitles": ["<Alert />", "Render"], "failureMessages": [], "fullName": "<Alert /> Render must match error()", "location": null, "status": "passed", "title": "must match error()" }, { "ancestorTitles": ["<Alert />", "Render"], "failureMessages": [], "fullName": "<Alert /> Render must match success()", "location": null, "status": "passed", "title": "must match success()" }, { "ancestorTitles": ["<Alert />", "Render"], "failureMessages": [], "fullName": "<Alert /> Render must match consent()", "location": null, "status": "passed", "title": "must match consent()" }, { "ancestorTitles": ["<Alert />", "Render"], "failureMessages": [], "fullName": "<Alert /> Render must match consentWithInput()", "location": null, "status": "passed", "title": "must match consentWithInput()" }], "endTime": 1648460251160, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Alert/__tests__/Alert.int.test.js", "startTime": 1648460249625, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Accessibility />", "Render"], "failureMessages": [], "fullName": "<Accessibility /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<Accessibility />", "Render"], "failureMessages": [], "fullName": "<Accessibility /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<Accessibility />", "Render"], "failureMessages": [], "fullName": "<Accessibility /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<Accessibility />", "Render"], "failureMessages": [], "fullName": "<Accessibility /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460251835, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/Accessibility/__tests__/Accessibility.int.test.js", "startTime": 1648460250504, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<NotFoundPage />", "Snaphot"], "failureMessages": [], "fullName": "<NotFoundPage /> Snaphot must match asyncRender", "location": null, "status": "passed", "title": "must match asyncRender" }, { "ancestorTitles": ["<NotFoundPage />", "Snaphot"], "failureMessages": [], "fullName": "<NotFoundPage /> Snaphot must match defaultRender", "location": null, "status": "passed", "title": "must match defaultRender" }], "endTime": 1648460251841, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/styleguide/src/pattern/page/NotFoundPage/__tests__/NotFoundPage.int.test.js", "startTime": 1648460249524, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<CodeStyle />", "Render"], "failureMessages": [], "fullName": "<CodeStyle /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<CodeStyle />", "Render"], "failureMessages": [], "fullName": "<CodeStyle /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<CodeStyle />", "Render"], "failureMessages": [], "fullName": "<CodeStyle /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<CodeStyle />", "Render"], "failureMessages": [], "fullName": "<CodeStyle /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460251875, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/CodeStyle/__tests__/CodeStyle.int.test.js", "startTime": 1648460250526, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Blankslate />", "Render"], "failureMessages": [], "fullName": "<Blankslate /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }, { "ancestorTitles": ["<Blankslate />", "Render"], "failureMessages": [], "fullName": "<Blankslate /> Render must match narrow()", "location": null, "status": "passed", "title": "must match narrow()" }, { "ancestorTitles": ["<Blankslate />", "Render"], "failureMessages": [], "fullName": "<Blankslate /> Render must match capped()", "location": null, "status": "passed", "title": "must match capped()" }, { "ancestorTitles": ["<Blankslate />", "Render"], "failureMessages": [], "fullName": "<Blankslate /> Render must match spacious()", "location": null, "status": "passed", "title": "must match spacious()" }, { "ancestorTitles": ["<Blankslate />", "Render"], "failureMessages": [], "fullName": "<Blankslate /> Render must match large()", "location": null, "status": "passed", "title": "must match large()" }, { "ancestorTitles": ["<Blankslate />", "Render"], "failureMessages": [], "fullName": "<Blankslate /> Render must match cleanBackground()", "location": null, "status": "passed", "title": "must match cleanBackground()" }], "endTime": 1648460252128, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Blankslate/__tests__/Blankslate.int.test.js", "startTime": 1648460250806, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["index", "constants"], "failureMessages": [], "fullName": "index constants must return all sort constants", "location": null, "status": "passed", "title": "must return all sort constants" }, { "ancestorTitles": ["index", "getSort()"], "failureMessages": [], "fullName": "index getSort() must return newSort with sortDefault order when currentSort equals sortDefault", "location": null, "status": "passed", "title": "must return newSort with sortDefault order when currentSort equals sortDefault" }, { "ancestorTitles": ["index", "getSort()"], "failureMessages": [], "fullName": "index getSort() must return newSort with order reversed from ascending to descending when currentSort index equals newSort index", "location": null, "status": "passed", "title": "must return newSort with order reversed from ascending to descending when currentSort index equals newSort index" }, { "ancestorTitles": ["index", "getSort()"], "failureMessages": [], "fullName": "index getSort() must return newSort with order reversed from descending to ascending when currentSort index equals newSort index", "location": null, "status": "passed", "title": "must return newSort with order reversed from descending to ascending when currentSort index equals newSort index" }, { "ancestorTitles": ["index", "getSort()"], "failureMessages": [], "fullName": "index getSort() must return newSort with sortDefault order when currentSort not equal sortDefault and currentSort index not equal newSort index", "location": null, "status": "passed", "title": "must return newSort with sortDefault order when currentSort not equal sortDefault and currentSort index not equal newSort index" }], "endTime": 1648460252157, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/library/src/sort/__tests__/index.test.js", "startTime": 1648460251005, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Icon />", "Render"], "failureMessages": [], "fullName": "<Icon /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }, { "ancestorTitles": ["<Icon />", "Render"], "failureMessages": [], "fullName": "<Icon /> Render must match allIcons()", "location": null, "status": "passed", "title": "must match allIcons()" }], "endTime": 1648460252430, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Icon/__tests__/Icon.int.test.js", "startTime": 1648460250769, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Rendering />", "Render"], "failureMessages": [], "fullName": "<Rendering /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<Rendering />", "Render"], "failureMessages": [], "fullName": "<Rendering /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<Rendering />", "Render"], "failureMessages": [], "fullName": "<Rendering /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<Rendering />", "Render"], "failureMessages": [], "fullName": "<Rendering /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460252583, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/Rendering/__tests__/Rendering.int.test.js", "startTime": 1648460251355, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Language />", "Render"], "failureMessages": [], "fullName": "<Language /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<Language />", "Render"], "failureMessages": [], "fullName": "<Language /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<Language />", "Render"], "failureMessages": [], "fullName": "<Language /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<Language />", "Render"], "failureMessages": [], "fullName": "<Language /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460253202, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/Language/__tests__/Language.int.test.js", "startTime": 1648460251858, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Compiling />", "Render"], "failureMessages": [], "fullName": "<Compiling /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<Compiling />", "Render"], "failureMessages": [], "fullName": "<Compiling /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<Compiling />", "Render"], "failureMessages": [], "fullName": "<Compiling /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<Compiling />", "Render"], "failureMessages": [], "fullName": "<Compiling /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460253342, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/Compiling/__tests__/Compiling.int.test.js", "startTime": 1648460251863, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Monorepo />", "Render"], "failureMessages": [], "fullName": "<Monorepo /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<Monorepo />", "Render"], "failureMessages": [], "fullName": "<Monorepo /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<Monorepo />", "Render"], "failureMessages": [], "fullName": "<Monorepo /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<Monorepo />", "Render"], "failureMessages": [], "fullName": "<Monorepo /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460253382, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/Monorepo/__tests__/Monorepo.int.test.js", "startTime": 1648460251906, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Microsite />", "Render"], "failureMessages": [], "fullName": "<Microsite /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<Microsite />", "Render"], "failureMessages": [], "fullName": "<Microsite /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<Microsite />", "Render"], "failureMessages": [], "fullName": "<Microsite /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<Microsite />", "Render"], "failureMessages": [], "fullName": "<Microsite /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460253627, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/Microsite/__tests__/Microsite.int.test.js", "startTime": 1648460252173, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Bootstrap />", "Render"], "failureMessages": [], "fullName": "<Bootstrap /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<Bootstrap />", "Render"], "failureMessages": [], "fullName": "<Bootstrap /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<Bootstrap />", "Render"], "failureMessages": [], "fullName": "<Bootstrap /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<Bootstrap />", "Render"], "failureMessages": [], "fullName": "<Bootstrap /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460253652, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/Bootstrap/__tests__/Bootstrap.int.test.js", "startTime": 1648460252167, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Subhead />", "Render"], "failureMessages": [], "fullName": "<Subhead /> Render must match plain()", "location": null, "status": "passed", "title": "must match plain()" }, { "ancestorTitles": ["<Subhead />", "Render"], "failureMessages": [], "fullName": "<Subhead /> Render must match spacious()", "location": null, "status": "passed", "title": "must match spacious()" }], "endTime": 1648460253966, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Subhead/__tests__/Subhead.int.test.js", "startTime": 1648460252460, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Testing />", "Render"], "failureMessages": [], "fullName": "<Testing /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<Testing />", "Render"], "failureMessages": [], "fullName": "<Testing /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<Testing />", "Render"], "failureMessages": [], "fullName": "<Testing /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<Testing />", "Render"], "failureMessages": [], "fullName": "<Testing /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460254193, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/Testing/__tests__/Testing.int.test.js", "startTime": 1648460252611, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Progress />", "Render"], "failureMessages": [], "fullName": "<Progress /> Render must match normal()", "location": null, "status": "passed", "title": "must match normal()" }, { "ancestorTitles": ["<Progress />", "Render"], "failureMessages": [], "fullName": "<Progress /> Render must match large()", "location": null, "status": "passed", "title": "must match large()" }, { "ancestorTitles": ["<Progress />", "Render"], "failureMessages": [], "fullName": "<Progress /> Render must match small()", "location": null, "status": "passed", "title": "must match small()" }], "endTime": 1648460254857, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Progress/__tests__/Progress.int.test.js", "startTime": 1648460253243, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<DisplayTable />", "Render"], "failureMessages": [], "fullName": "<DisplayTable /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }], "endTime": 1648460255245, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Grid/DisplayTable/__tests__/DisplayTable.int.test.js", "startTime": 1648460253349, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Radio />", "Event"], "failureMessages": [], "fullName": "<Radio /> Event must handle event when onChange()", "location": null, "status": "passed", "title": "must handle event when onChange()" }, { "ancestorTitles": ["<Radio />", "Render"], "failureMessages": [], "fullName": "<Radio /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }, { "ancestorTitles": ["<Radio />", "Render"], "failureMessages": [], "fullName": "<Radio /> Render must match inactive()", "location": null, "status": "passed", "title": "must match inactive()" }], "endTime": 1648460255272, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Form/Radio/__tests__/Radio.int.test.js", "startTime": 1648460253396, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<ErrorBoundary />", "Render"], "failureMessages": [], "fullName": "<ErrorBoundary /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }], "endTime": 1648460255279, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/ErrorBoundary/__tests__/ErrorBoundary.int.test.js", "startTime": 1648460253664, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Loader />", "Render"], "failureMessages": [], "fullName": "<Loader /> Render must match heading()", "location": null, "status": "passed", "title": "must match heading()" }, { "ancestorTitles": ["<Loader />", "Render"], "failureMessages": [], "fullName": "<Loader /> Render must match text()", "location": null, "status": "passed", "title": "must match text()" }, { "ancestorTitles": ["<Loader />", "Render"], "failureMessages": [], "fullName": "<Loader /> Render must match label()", "location": null, "status": "passed", "title": "must match label()" }, { "ancestorTitles": ["<Loader />", "Render"], "failureMessages": [], "fullName": "<Loader /> Render must match button()", "location": null, "status": "passed", "title": "must match button()" }], "endTime": 1648460255321, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Loader/__tests__/Loader.int.test.js", "startTime": 1648460253633, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Runtime />", "Render"], "failureMessages": [], "fullName": "<Runtime /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<Runtime />", "Render"], "failureMessages": [], "fullName": "<Runtime /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<Runtime />", "Render"], "failureMessages": [], "fullName": "<Runtime /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<Runtime />", "Render"], "failureMessages": [], "fullName": "<Runtime /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460255843, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/Runtime/__tests__/Runtime.int.test.js", "startTime": 1648460253978, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Label />", "Render"], "failureMessages": [], "fullName": "<Label /> Render must match regular()", "location": null, "status": "passed", "title": "must match regular()" }], "endTime": 1648460256077, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Label/__tests__/Label.int.test.js", "startTime": 1648460254222, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["index", "getAppMockStore()"], "failureMessages": [], "fullName": "index getAppMockStore() must return a store with custom data when custom data provided", "location": null, "status": "passed", "title": "must return a store with custom data when custom data provided" }], "endTime": 1648460256512, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/library/src/store/mock/__tests__/index.test.js", "startTime": 1648460255212, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["index", "getRandomBoolean()"], "failureMessages": [], "fullName": "index getRandomBoolean() must return true when Math.random() return value is greater than 0.5", "location": null, "status": "passed", "title": "must return true when Math.random() return value is greater than 0.5" }, { "ancestorTitles": ["index", "getRandomBoolean()"], "failureMessages": [], "fullName": "index getRandomBoolean() must return true when Math.random() return value is less than 0.5", "location": null, "status": "passed", "title": "must return true when Math.random() return value is less than 0.5" }], "endTime": 1648460256647, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/library/src/boolean/__tests__/index.test.js", "startTime": 1648460255355, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["index", "getCapizalizedString()"], "failureMessages": [], "fullName": "index getCapizalizedString() must return a capitalized string", "location": null, "status": "passed", "title": "must return a capitalized string" }], "endTime": 1648460256669, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/library/src/string/__tests__/index.test.js", "startTime": 1648460255355, "status": "passed", "summary": "" }, { "assertionResults": [{ "ancestorTitles": ["<Routing />", "Render"], "failureMessages": [], "fullName": "<Routing /> Render must match specificationsStandardsGuidelines()", "location": null, "status": "passed", "title": "must match specificationsStandardsGuidelines()" }, { "ancestorTitles": ["<Routing />", "Render"], "failureMessages": [], "fullName": "<Routing /> Render must match openSourceDependencyProjects()", "location": null, "status": "passed", "title": "must match openSourceDependencyProjects()" }, { "ancestorTitles": ["<Routing />", "Render"], "failureMessages": [], "fullName": "<Routing /> Render must match designSystemCore()", "location": null, "status": "passed", "title": "must match designSystemCore()" }, { "ancestorTitles": ["<Routing />", "Render"], "failureMessages": [], "fullName": "<Routing /> Render must match productMicrosites()", "location": null, "status": "passed", "title": "must match productMicrosites()" }], "endTime": 1648460256835, "message": "", "name": "/Users/mts/PapillonAdsHub/papillonads/packages/components/src/primer/Concept/Routing/__tests__/Routing.int.test.js", "startTime": 1648460255308, "status": "passed", "summary": "" }], "wasInterrupted": false }
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.Blankslate = void 0;
|
|
7
|
-
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
8
|
-
var classnames_1 = __importDefault(require("classnames"));
|
|
9
|
-
var Blankslate_prop_1 = require("./Blankslate.prop");
|
|
10
|
-
var styles = require('./Blankslate.scss').default;
|
|
11
|
-
var Blankslate = function (_a) {
|
|
12
|
-
var _b;
|
|
13
|
-
var className = _a.className, heading = _a.heading, text = _a.text, variant = _a.variant, hasCleanBackground = _a.hasCleanBackground;
|
|
14
|
-
return ((0, jsx_runtime_1.jsxs)("div", { className: (0, classnames_1.default)(className, styles.blankslate, (_b = {},
|
|
15
|
-
_b[styles['blankslate-narrow']] = variant === Blankslate_prop_1.blankslateVariantEnum.narrow,
|
|
16
|
-
_b[styles['blankslate-capped']] = (variant === Blankslate_prop_1.blankslateVariantEnum.capped) === true,
|
|
17
|
-
_b[styles['blankslate-spacious']] = variant === Blankslate_prop_1.blankslateVariantEnum.spacious,
|
|
18
|
-
_b[styles['blankslate-large']] = variant === Blankslate_prop_1.blankslateVariantEnum.large,
|
|
19
|
-
_b[styles['blankslate-clean-background']] = hasCleanBackground === true,
|
|
20
|
-
_b)), children: [(0, jsx_runtime_1.jsx)("h3", { children: heading }), (0, jsx_runtime_1.jsx)("p", { children: text })] }));
|
|
21
|
-
};
|
|
22
|
-
exports.Blankslate = Blankslate;
|
|
23
|
-
exports.Blankslate.defaultProps = Blankslate_prop_1.defaultProps;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.defaultProps = exports.blankslateVariantEnum = void 0;
|
|
4
|
-
var blankslateVariantEnum;
|
|
5
|
-
(function (blankslateVariantEnum) {
|
|
6
|
-
blankslateVariantEnum[blankslateVariantEnum["default"] = 0] = "default";
|
|
7
|
-
blankslateVariantEnum[blankslateVariantEnum["narrow"] = 1] = "narrow";
|
|
8
|
-
blankslateVariantEnum[blankslateVariantEnum["capped"] = 2] = "capped";
|
|
9
|
-
blankslateVariantEnum[blankslateVariantEnum["spacious"] = 3] = "spacious";
|
|
10
|
-
blankslateVariantEnum[blankslateVariantEnum["large"] = 4] = "large";
|
|
11
|
-
})(blankslateVariantEnum || (exports.blankslateVariantEnum = blankslateVariantEnum = {}));
|
|
12
|
-
exports.defaultProps = {
|
|
13
|
-
className: null,
|
|
14
|
-
heading: '',
|
|
15
|
-
text: '',
|
|
16
|
-
variant: blankslateVariantEnum.default,
|
|
17
|
-
hasCleanBackground: false,
|
|
18
|
-
};
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.cleanBackground = exports.large = exports.spacious = exports.capped = exports.narrow = exports.regular = void 0;
|
|
7
|
-
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
8
|
-
var addon_jest_1 = require("@storybook/addon-jest");
|
|
9
|
-
var Blankslate_prop_1 = require("../Blankslate.prop");
|
|
10
|
-
var _jest_test_results_json_1 = __importDefault(require("../../../../../../.jest-test-results.json"));
|
|
11
|
-
var Blankslate = process.env.NODE_ENV === 'develop' || process.env.NODE_ENV === 'test'
|
|
12
|
-
? require('../../../index').primer.Blankslate.Blankslate
|
|
13
|
-
: require('../../../../build').primer.Blankslate.Blankslate;
|
|
14
|
-
var heading = 'This is a blank slate';
|
|
15
|
-
var text = 'Use it to provide information when no dynamic content exists.';
|
|
16
|
-
exports.default = {
|
|
17
|
-
title: 'Primer/Atom/Blankslate',
|
|
18
|
-
component: Blankslate,
|
|
19
|
-
decorators: [(0, addon_jest_1.withTests)({ results: _jest_test_results_json_1.default })],
|
|
20
|
-
parameters: { jest: ['Blankslate.int.test.ts'] },
|
|
21
|
-
excludeStories: ['custom'],
|
|
22
|
-
};
|
|
23
|
-
function regular() {
|
|
24
|
-
return (0, jsx_runtime_1.jsx)(Blankslate, { variant: Blankslate_prop_1.blankslateVariantEnum.default, heading: heading, text: text });
|
|
25
|
-
}
|
|
26
|
-
exports.regular = regular;
|
|
27
|
-
function narrow() {
|
|
28
|
-
return (0, jsx_runtime_1.jsx)(Blankslate, { variant: Blankslate_prop_1.blankslateVariantEnum.narrow, heading: heading, text: text });
|
|
29
|
-
}
|
|
30
|
-
exports.narrow = narrow;
|
|
31
|
-
function capped() {
|
|
32
|
-
return (0, jsx_runtime_1.jsx)(Blankslate, { variant: Blankslate_prop_1.blankslateVariantEnum.capped, heading: heading, text: text });
|
|
33
|
-
}
|
|
34
|
-
exports.capped = capped;
|
|
35
|
-
function spacious() {
|
|
36
|
-
return (0, jsx_runtime_1.jsx)(Blankslate, { variant: Blankslate_prop_1.blankslateVariantEnum.spacious, heading: heading, text: text });
|
|
37
|
-
}
|
|
38
|
-
exports.spacious = spacious;
|
|
39
|
-
function large() {
|
|
40
|
-
return (0, jsx_runtime_1.jsx)(Blankslate, { variant: Blankslate_prop_1.blankslateVariantEnum.large, heading: heading, text: text });
|
|
41
|
-
}
|
|
42
|
-
exports.large = large;
|
|
43
|
-
function cleanBackground() {
|
|
44
|
-
return (0, jsx_runtime_1.jsx)(Blankslate, { hasCleanBackground: true, heading: heading, text: text });
|
|
45
|
-
}
|
|
46
|
-
exports.cleanBackground = cleanBackground;
|