import { ShallowWrapper } from 'enzyme'; export default class TestComponentPropUtils { /** * An object of basic React props that can be destructured and applied to a component for testing purposes. */ static basicReactProps: { id: string; className: string; style: { cursor: string; }; }; /** * Runs through a series of expects that test the attributes of the rendered element. * @param shallowWrapper The result from calling `shallow()`. * @param usesContainer Whether the component implements the optional `Component` wrapper around its contents. * @param useChildIndex If `usesContainer` is true, then this can optionally target a specific child (else 0 index). */ static expectsBasicReactProps: (shallowWrapper: ShallowWrapper, usesContainer: boolean, useChildIndex?: number, id?: string) => void; } //# sourceMappingURL=TestComponentPropUtils.d.ts.map