@wix/design-system
Version:
@wix/design-system
28 lines • 848 B
JavaScript
import Notification from '.';
import React from 'react';
// This object should contain a mock value for each required prop of this component
export const requiredProps = {};
// This array should contain an object only for tests you wish to run on all compliance tests
const sharedTests = [
{
title: 'render',
props: {
...requiredProps,
},
},
];
export const testkitTests = [
{
title: 'render',
props: {
...requiredProps,
children: [
React.createElement(Notification.TextLabel, { key: "0" }, "label"),
React.createElement(Notification.CloseButton, { key: "1" }),
],
},
},
];
export const ssrTests = [...sharedTests];
export const a11yTests = [...sharedTests];
//# sourceMappingURL=Notification.meta.js.map