searchInputPlaceholder:'Search or filter results...',
sortOptions:EpicsSortOptions,
initialFilterValue:['foo'],
initialSortBy:'created_desc',
urlParams:wrapper.vm.urlParams,
issuableSymbol:'&',
recentSearchesStorageKey:'epics',
});
});
it.each`
hasPreviousPage | hasNextPage | returnValue
${true} | ${undefined} | ${true}
${undefined} | ${true} | ${true}
${false} | ${undefined} | ${false}
${undefined} | ${false} | ${false}
${false} | ${false} | ${false}
${true} | ${true} | ${true}
`(
'sets showPaginationControls prop value as $returnValue when hasPreviousPage is $hasPreviousPage and hasNextPage is $hasNextPage within `epics.pageInfo`',