@stencil/core
Version:
A Compiler for Web Components and Progressive Web Apps
24 lines (23 loc) • 1.27 kB
TypeScript
import { toEqualAttribute, toEqualAttributes, toHaveAttribute } from './attributes';
import { toHaveClass, toHaveClasses, toMatchClasses } from './class-list';
import { toHaveFirstReceivedEventDetail, toHaveNthReceivedEventDetail, toHaveReceivedEvent, toHaveReceivedEventDetail, toHaveReceivedEventTimes } from './events';
import { toEqualHtml, toEqualLightHtml } from './html';
import { toMatchScreenshot } from './screenshot';
import { toEqualText } from './text';
export declare const expectExtend: {
toEqualAttribute: typeof toEqualAttribute;
toEqualAttributes: typeof toEqualAttributes;
toEqualHtml: typeof toEqualHtml;
toEqualLightHtml: typeof toEqualLightHtml;
toEqualText: typeof toEqualText;
toHaveAttribute: typeof toHaveAttribute;
toHaveClass: typeof toHaveClass;
toHaveClasses: typeof toHaveClasses;
toMatchClasses: typeof toMatchClasses;
toHaveReceivedEvent: typeof toHaveReceivedEvent;
toHaveReceivedEventDetail: typeof toHaveReceivedEventDetail;
toHaveReceivedEventTimes: typeof toHaveReceivedEventTimes;
toHaveFirstReceivedEventDetail: typeof toHaveFirstReceivedEventDetail;
toHaveNthReceivedEventDetail: typeof toHaveNthReceivedEventDetail;
toMatchScreenshot: typeof toMatchScreenshot;
};