tkrotoff/fetch

View on GitHub
examples/web/jest.setup.ts

Summary

Maintainability
A
0 mins
Test Coverage
import assert from 'node:assert';

// [console.assert not throwing with v22.4.0](https://github.com/facebook/jest/issues/5634)
console.assert = assert;

(window.fetch as any) = () => {
  throw new Error('You should mock fetch()');
};