Class: MockList
mock/src.MockList
This is an object you can return from your mock resolvers which calls the
provided mockFunction
once for each list item.
Table of contents
Constructors
Methods
Constructors
constructor
• new MockList(length
, mockFunction?
)
Parameters
Name | Type | Description |
---|---|---|
length | number | number [] | Either the exact length of items to return or an inclusive range of possible lengths. |
mockFunction? | () => unknown | The function to call for each item in the list to resolve it. It can return another MockList or a value. |
Defined in
packages/mock/src/MockList.ts:28 (opens in a new tab)
Methods
mock
▸ mock(): unknown
[]
Returns
unknown
[]