katoikia-app/web-ui/web-react/node_modules/eslint-plugin-jsx-a11y/__mocks__/JSXElementMock.js

38 lines
685 B
JavaScript

/**
* @flow
*/
import JSXAttributeMock from './JSXAttributeMock';
export type TJSXElementMock = {
type: 'JSXElement',
openingElement: {
type: 'JSXOpeningElement',
name: {
type: 'JSXIdentifier',
name: string,
},
attributes: Array<JSXAttributeMock>,
},
children: Array<Node>,
};
export default function JSXElementMock(
tagName: string,
attributes: Array<JSXAttributeMock> = [],
children: Array<Node> = [],
): TJSXElementMock {
return {
type: 'JSXElement',
openingElement: {
type: 'JSXOpeningElement',
name: {
type: 'JSXIdentifier',
name: tagName,
},
attributes,
},
children,
};
}