Skip to content

Commit

Permalink
Merge pull request #25869 from alitas/patch-1
Browse files Browse the repository at this point in the history
Test: Fix jest-dom matcher type imports
  • Loading branch information
kasperpeulen authored Feb 2, 2024
2 parents 1807f05 + f5ab1df commit ef6ba95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/lib/test/src/expect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<T> = PromisifyObject<JestAssertion<T>> &
TestingLibraryMatchers<ReturnType<ExpectStatic['stringContaining']>, Promise<void>>;
Expand Down

0 comments on commit ef6ba95

Please sign in to comment.