UNPKG

jest-ai

Version:

Custom jest matchers for testing AI applications

11 lines (10 loc) 281 B
import { type expect } from '@jest/globals' import { type JestAIMatchers } from './matchers' export {} declare module '@jest/expect' { export interface Matchers<R extends void | Promise<void>> extends JestAIMatchers< ReturnType<typeof expect.stringContaining>, R > {} }