diff --git a/packages/botonic-plugin-contentful/tests/search/search-by-keywords.test.ts b/packages/botonic-plugin-contentful/tests/search/search-by-keywords.test.ts index b4e64d802a..c87f09f28a 100644 --- a/packages/botonic-plugin-contentful/tests/search/search-by-keywords.test.ts +++ b/packages/botonic-plugin-contentful/tests/search/search-by-keywords.test.ts @@ -134,7 +134,7 @@ export function keywordsWithMockCms( stemBlackList: { [locale: string]: StemmingBlackList[] } = {} ): SearchByKeywords { const mockCms = mock(DummyCMS) - when(mockCms.contentsWithKeywords(deepEqual(context))).thenResolve( + when(mockCms.contentsWithKeywords(deepEqual(context), undefined)).thenResolve( allContents ) const normalizer = new Normalizer(stemBlackList)