Files
twenty/packages/twenty-server/setupTests.ts
T
Félix MalfaitandGitHub d29dbd473b Upgrade SWC Core and Storybook to v8 (#13799)
This is is a blocker for various sub-migrations
2025-08-11 12:02:33 +02:00

12 lines
253 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;
}
}
}