eigent/test/vitest-jest-dom.d.ts

8 lines
197 B
TypeScript

// Test types for vitest + jest-dom compatibility
import '@testing-library/jest-dom'
declare global {
namespace Vi {
interface JestAssertion<T = any> extends jest.Matchers<void, T> {}
}
}