mirror of
https://github.com/twentyhq/twenty.git
synced 2026-04-19 06:19:39 -04:00
12 lines
252 B
TypeScript
12 lines
252 B
TypeScript
// Add Jest matchers for toThrowError and other missing methods
|
|
export {};
|
|
|
|
declare global {
|
|
namespace jest {
|
|
interface Matchers<R> {
|
|
toThrowError(error?: string | RegExp | Error): R;
|
|
toBeCalledTimes(expected: number): R;
|
|
}
|
|
}
|
|
}
|