insomnia/packages/insomnia-app/app/mocha.d.ts
2021-05-13 16:45:17 -05:00

8 lines
303 B
TypeScript

declare namespace Mocha {
interface TestFunction {
// This is a hack until we can get rid of Mocha entirely from `insomnia-testing`.
// Until then, both declare global types which will always conflict and we need to do something like this to backport compatability.
each: jest.Each;
}
}