wix-style-react
Version:
wix-style-react
20 lines • 694 B
JavaScript
import CardFolderTabs from '.';
import React from 'react';
// This object should contain a mock value for each required prop of this component
export const requiredProps = {
activeId: '1',
children: (React.createElement(CardFolderTabs.Tab, { id: "1", key: "1", name: "Some tab" }, "xxx")),
};
// 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=CardFolderTabs.meta.js.map