mirror of
https://github.com/flarum/framework.git
synced 2024-11-23 02:13:37 +08:00
15 lines
333 B
TypeScript
15 lines
333 B
TypeScript
import 'mithril-query/mithril-query';
|
|
|
|
declare global {
|
|
namespace jest {
|
|
interface Matchers<R> {
|
|
toHaveElement(selector: any): R;
|
|
toHaveElementAttr(selector: any, attribute: any, value: any): R;
|
|
toHaveElementAttr(selector: any, attribute: any): R;
|
|
toContainRaw(content: any): R;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|