wix-style-react
Version:
wix-style-react
26 lines • 852 B
JavaScript
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,
children: React.createElement("div", null), // TODO this prop should be declared as required since the component explodes without it
},
},
];
export const testkitTests = [
{
title: 'render',
props: {
...requiredProps,
children: React.createElement("div", null),
labelValue: 'label',
},
},
];
export const ssrTests = [...sharedTests];
export const a11yTests = [...sharedTests];
//# sourceMappingURL=ToggleButton.meta.js.map