UNPKG

@shopify/flash-list

Version:

FlashList is a more performant FlatList replacement

27 lines (26 loc) 635 B
jest.mock("@shopify/flash-list/dist/recyclerview/utils/measureLayout", () => { const originalModule = jest.requireActual( "@shopify/flash-list/dist/recyclerview/utils/measureLayout" ); return { ...originalModule, measureParentSize: jest.fn().mockImplementation(() => ({ x: 0, y: 0, width: 400, height: 900, })), measureFirstChildLayout: jest.fn().mockImplementation(() => ({ x: 0, y: 0, width: 400, height: 900, })), measureItemLayout: jest.fn().mockImplementation(() => ({ x: 0, y: 0, width: 100, height: 100, })), }; });