File size: 241 Bytes
9fed9f2 |
1 2 3 4 5 6 7 8 9 10 11 12 |
/// <reference types="@testing-library/jest-dom" />
import '@testing-library/jest-dom';
import { test, expect } from '@jest/globals';
declare global {
namespace jest {
interface Matchers<R> {
toBeInTheDocument(): R;
}
}
}
|