import { Response } from 'supertest'; /****************************************************************************** Types ******************************************************************************/ // Use generics to add properties to 'body' export interface TestRes extends Omit { body: T & { error?: string | ErrorObject }; } interface ErrorObject { message: string; [key: string]: unknown; }