From f5ab1dfab020c6ebe98e1a3dece900ef301b71e1 Mon Sep 17 00:00:00 2001 From: Ali Tas Date: Thu, 1 Feb 2024 16:27:21 -0500 Subject: [PATCH] Test: Fix jest-dom matcher type imports --- code/lib/test/src/expect.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/lib/test/src/expect.ts b/code/lib/test/src/expect.ts index da17eb52ff59..aa898bd7e36a 100644 --- a/code/lib/test/src/expect.ts +++ b/code/lib/test/src/expect.ts @@ -16,7 +16,7 @@ import { } from '@vitest/expect'; import * as matchers from '@testing-library/jest-dom/matchers'; import type { PromisifyObject } from './utils'; -import type { TestingLibraryMatchers } from '@testing-library/jest-dom/types/matchers'; +import type { TestingLibraryMatchers } from '@testing-library/jest-dom/matchers'; type Matchers = PromisifyObject> & TestingLibraryMatchers, Promise>;