mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-09 06:08:03 -05:00
17 lines
509 B
TypeScript
17 lines
509 B
TypeScript
/// <reference types="vitest/globals" />
|
|
/// <reference types="@testing-library/jest-dom" />
|
|
|
|
import type { TestingLibraryMatchers } from "@testing-library/jest-dom/matchers"
|
|
import type { Assertion, AsymmetricMatchersContaining } from "vitest"
|
|
|
|
declare module "vitest" {
|
|
interface Assertion<T = any>
|
|
extends jest.Matchers<void>,
|
|
TestingLibraryMatchers<T, void> {
|
|
toBeInTheDocument(): void
|
|
}
|
|
interface AsymmetricMatchersContaining extends jest.Expect {
|
|
toBeInTheDocument(): void
|
|
}
|
|
}
|