index.d.ts 1.2 KB

1234567891011121314151617181920212223
  1. import { toEqualAttribute, toEqualAttributes, toHaveAttribute } from './attributes';
  2. import { toHaveClass, toHaveClasses, toMatchClasses } from './class-list';
  3. import { toHaveFirstReceivedEventDetail, toHaveNthReceivedEventDetail, toHaveReceivedEvent, toHaveReceivedEventDetail, toHaveReceivedEventTimes } from './events';
  4. import { toEqualHtml, toEqualLightHtml } from './html';
  5. import { toMatchScreenshot } from './screenshot';
  6. import { toEqualText } from './text';
  7. export declare const expectExtend: {
  8. toEqualAttribute: typeof toEqualAttribute;
  9. toEqualAttributes: typeof toEqualAttributes;
  10. toEqualHtml: typeof toEqualHtml;
  11. toEqualLightHtml: typeof toEqualLightHtml;
  12. toEqualText: typeof toEqualText;
  13. toHaveAttribute: typeof toHaveAttribute;
  14. toHaveClass: typeof toHaveClass;
  15. toHaveClasses: typeof toHaveClasses;
  16. toMatchClasses: typeof toMatchClasses;
  17. toHaveReceivedEvent: typeof toHaveReceivedEvent;
  18. toHaveReceivedEventDetail: typeof toHaveReceivedEventDetail;
  19. toHaveReceivedEventTimes: typeof toHaveReceivedEventTimes;
  20. toHaveFirstReceivedEventDetail: typeof toHaveFirstReceivedEventDetail;
  21. toHaveNthReceivedEventDetail: typeof toHaveNthReceivedEventDetail;
  22. toMatchScreenshot: typeof toMatchScreenshot;
  23. };