@tachui/devtools
Version:
Development & debugging tools for tachUI framework
29 lines • 871 B
TypeScript
/**
* Testing Utilities
*
* Provides component testing helpers, mock data providers,
* visual regression testing, and accessibility testing.
*/
export declare const ComponentTester: {
create: (component: any) => {
withProps: (props: any) => /*elided*/ any;
withMocks: (mocks: any) => /*elided*/ any;
withBreakpoint: (breakpoint: string) => /*elided*/ any;
withTheme: (theme: string) => /*elided*/ any;
test: (name: string, fn: Function) => void;
};
};
export declare const MockProvider: {
create: (mocks: any) => any;
};
export declare const SnapshotTester: {
create: (_config: any) => {
snapshot: (name: string, _component: any) => void;
};
};
export declare const A11yTester: {
create: (_config: any) => {
test: (_component: any) => void;
};
};
//# sourceMappingURL=index.d.ts.map