17 lines
575 B
TypeScript
17 lines
575 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-expect-error
|
|
// eslint-disable-next-line no-undef
|
|
extends TestingLibraryMatchers<typeof expect.stringContaining, R> {}
|
|
}
|
|
}
|