wix-style-react
Version:
wix-style-react
28 lines • 850 B
JavaScript
// This object should contain a mock value for each required prop of this component
export const requiredProps = {
items: [
{
ariaLabel: 'Avatar for John Doe',
name: 'John Doe',
title: 'Wix Account: John Doe (johndoe@gmail.com)',
},
{
ariaLabel: 'Avatar for John Doe',
name: 'John Doe',
title: 'Wix Account: John Doe (johndoe@gmail.com)',
},
],
};
// 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 = [...sharedTests];
export const ssrTests = [...sharedTests];
export const a11yTests = [...sharedTests];
//# sourceMappingURL=AvatarGroup.meta.js.map