16 lines
513 B
TypeScript
16 lines
513 B
TypeScript
/* eslint-disable @typescript-eslint/no-empty-interface */
|
|
/* eslint-disable @typescript-eslint/ban-types */
|
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
|
|
/// <reference types="@sveltejs/kit" />
|
|
import type { TestingLibraryMatchers } from '@testing-library/jest-dom/matchers';
|
|
|
|
declare global {
|
|
namespace jest {
|
|
interface Matchers<R = void>
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore
|
|
extends TestingLibraryMatchers<typeof expect.stringContaining, R> {}
|
|
}
|
|
}
|