Address mocks for @shopify/address
.
yarn add @shopify/address-mocks
If your component uses the @shopify/address package and you want to mock API calls, you can use the following:
import {fetch} from '@shopify/jest-dom-mocks';
import {mockCountryRequests} from '@shopify/address-mocks';
beforeEach(mockCountryRequests);
afterEach(fetch.restore);
Note: Only FR / JA and EN are mocked.