UNPKG

jest-ai

Version:

Custom jest matchers for testing AI applications

13 lines (11 loc) 247 B
/// <reference types="jest" /> import {type JestAIMatchers} from './matchers' declare global { namespace jest { interface Matchers<R = void, T = {}> extends JestAIMatchers< ReturnType<typeof expect.stringContaining>, R > {} } }