react-mock
react-mock copied to clipboard
Following installing fetch mock i get SyntaxError: Cannot use import statement outside a module
after i install @react-mock/fetch than run npm test (with create react app setup) i get this error:
import http from 'node:http';
^^^^^^
SyntaxError: Cannot use import statement outside a module
snippet code:
import { FetchMock } from '@react-mock/fetch';
//..
render(
<FetchMock options={{ matcher: 'https://my-server/api/', response: [{ id: 123 }], method: 'GET' }}>
<AppWrapper />
</FetchMock>
);