mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
f5b710c919
* chore(deps): update dependency eslint to v9 * update deps + fix things * add changeset * fix preview * add changeset * lockfile * format * add changeset --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: pngwn <hello@pngwn.io> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
9 lines
256 B
TypeScript
9 lines
256 B
TypeScript
import type { TestingLibraryMatchers } from "@testing-library/jest-dom/matchers";
|
|
import "@testing-library/jest-dom/vitest";
|
|
|
|
declare module "vitest" {
|
|
interface Assertion<T = any>
|
|
extends jest.Matchers<void, T>,
|
|
TestingLibraryMatchers<T, void> {}
|
|
}
|