7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
global.fetch = Object.assign(
|
|
() => {
|
|
throw new Error("Tests must mock fetch explicitly");
|
|
},
|
|
{ preconnect: fetch.preconnect },
|
|
) as typeof fetch;
|