@coveo/quantic 3.32.0 → 3.33.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -15
- package/docs/out/quantic-docs.json +1 -1
- package/force-app/main/default/lwc/quanticAriaLive/__tests__/quanticAriaLive.test.js +106 -0
- package/force-app/main/default/lwc/quanticBreadcrumbManager/__tests__/quanticBreadcrumbManager.test.js +752 -0
- package/force-app/main/default/lwc/quanticBreadcrumbManager/e2e/fixture.ts +76 -0
- package/force-app/main/default/lwc/quanticBreadcrumbManager/e2e/pageObject.ts +282 -0
- package/force-app/main/default/lwc/quanticBreadcrumbManager/e2e/quanticBreadcrumbManager.e2e.ts +167 -0
- package/force-app/main/default/lwc/quanticCarousel/__tests__/quanticCarousel.test.js +262 -0
- package/force-app/main/default/lwc/quanticCaseClassification/__tests__/quanticCaseClassification.test.js +819 -0
- package/force-app/main/default/lwc/quanticCaseClassification/e2e/data.ts +23 -0
- package/force-app/main/default/lwc/quanticCaseClassification/e2e/fixture.ts +51 -0
- package/force-app/main/default/lwc/quanticCaseClassification/e2e/pageObject.ts +152 -0
- package/force-app/main/default/lwc/quanticCaseClassification/e2e/quanticCaseClassification.e2e.ts +269 -0
- package/force-app/main/default/lwc/quanticCategoryFacet/__tests__/quanticCategoryFacet.test.js +1183 -0
- package/force-app/main/default/lwc/quanticCategoryFacet/e2e/data.ts +27 -0
- package/force-app/main/default/lwc/quanticCategoryFacet/e2e/fixture.ts +75 -0
- package/force-app/main/default/lwc/quanticCategoryFacet/e2e/pageObject.ts +55 -0
- package/force-app/main/default/lwc/quanticCategoryFacet/e2e/quanticCategoryFacet.e2e.ts +199 -0
- package/force-app/main/default/lwc/quanticCitation/__tests__/quanticCitation.test.js +371 -0
- package/force-app/main/default/lwc/quanticColoredResultBadge/__tests__/quanticColoredResultBadge.test.js +212 -0
- package/force-app/main/default/lwc/quanticDateFacet/__tests__/quanticDateFacet.test.js +688 -0
- package/force-app/main/default/lwc/quanticDateFacet/e2e/data.ts +24 -0
- package/force-app/main/default/lwc/quanticDateFacet/e2e/fixture.ts +68 -0
- package/force-app/main/default/lwc/quanticDateFacet/e2e/pageObject.ts +27 -0
- package/force-app/main/default/lwc/quanticDateFacet/e2e/quanticDateFacet.e2e.ts +145 -0
- package/force-app/main/default/lwc/quanticDidYouMean/__tests__/quanticDidYouMean.test.js +348 -0
- package/force-app/main/default/lwc/quanticDidYouMean/e2e/data.ts +48 -0
- package/force-app/main/default/lwc/quanticDidYouMean/e2e/fixture.ts +80 -0
- package/force-app/main/default/lwc/quanticDidYouMean/e2e/pageObject.ts +173 -0
- package/force-app/main/default/lwc/quanticDidYouMean/e2e/quanticDidYouMean.e2e.ts +219 -0
- package/force-app/main/default/lwc/quanticDocumentSuggestion/__tests__/quanticDocumentSuggestion.test.js +404 -0
- package/force-app/main/default/lwc/quanticDocumentSuggestion/e2e/fixture.ts +38 -0
- package/force-app/main/default/lwc/quanticDocumentSuggestion/e2e/pageObject.ts +52 -0
- package/force-app/main/default/lwc/quanticDocumentSuggestion/e2e/quanticDocumentSuggestion.e2e.ts +102 -0
- package/force-app/main/default/lwc/quanticFacet/__tests__/quanticFacet.test.js +1105 -0
- package/force-app/main/default/lwc/quanticFacet/e2e/data.ts +21 -0
- package/force-app/main/default/lwc/quanticFacet/e2e/fixture.ts +73 -0
- package/force-app/main/default/lwc/quanticFacet/e2e/pageObject.ts +67 -0
- package/force-app/main/default/lwc/quanticFacet/e2e/quanticFacet.e2e.ts +208 -0
- package/force-app/main/default/lwc/quanticFacetCaption/__tests__/quanticFacetCaption.test.js +28 -0
- package/force-app/main/default/lwc/quanticFacetManager/__tests__/quanticFacetManager.test.js +178 -0
- package/force-app/main/default/lwc/quanticFacetManager/e2e/fixture.ts +64 -0
- package/force-app/main/default/lwc/quanticFacetManager/e2e/pageObject.ts +23 -0
- package/force-app/main/default/lwc/quanticFacetManager/e2e/quanticFacetManager.e2e.ts +82 -0
- package/force-app/main/default/lwc/quanticFeedback/__tests__/quanticFeedback.test.js +392 -0
- package/force-app/main/default/lwc/quanticFeedbackModal/__tests__/quanticFeedbackModal.test.js +448 -0
- package/force-app/main/default/lwc/quanticFeedbackModalQna/__tests__/quanticFeedbackModalQna.test.js +298 -0
- package/force-app/main/default/lwc/quanticFoldedResultList/__tests__/quanticFoldedResultList.test.js +323 -0
- package/force-app/main/default/lwc/quanticFoldedResultList/e2e/fixture.ts +70 -0
- package/force-app/main/default/lwc/quanticFoldedResultList/e2e/pageObject.ts +81 -0
- package/force-app/main/default/lwc/quanticFoldedResultList/e2e/quanticFoldedResultList.e2e.ts +69 -0
- package/force-app/main/default/lwc/quanticGeneratedAnswer/__tests__/quanticGeneratedAnswer.test.js +1158 -0
- package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/data.ts +56 -0
- package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/fixture.ts +185 -0
- package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/pageObject.ts +451 -0
- package/force-app/main/default/lwc/quanticGeneratedAnswer/e2e/quanticGeneratedAnswer.e2e.ts +337 -0
- package/force-app/main/default/lwc/quanticGeneratedAnswerContent/__tests__/quanticGeneratedAnswerContent.test.js +151 -0
- package/force-app/main/default/lwc/quanticHeading/__tests__/quanticHeading.test.js +71 -0
- package/force-app/main/default/lwc/quanticHeadlessLoader/__tests__/quanticHeadlessLoader.test.js +651 -0
- package/force-app/main/default/lwc/quanticInsightInterface/__tests__/quanticInsightInterface.test.js +194 -0
- package/force-app/main/default/lwc/quanticInsightInterface/quanticInsightInterface.js +1 -1
- package/force-app/main/default/lwc/quanticInsightSummary/__tests__/quanticInsightSummary.test.js +230 -0
- package/force-app/main/default/lwc/quanticModal/__tests__/quanticModal.test.js +205 -0
- package/force-app/main/default/lwc/quanticNotifications/__tests__/quanticNotifications.test.js +309 -0
- package/force-app/main/default/lwc/quanticNotifications/e2e/fixture.ts +58 -0
- package/force-app/main/default/lwc/quanticNotifications/e2e/pageObject.ts +55 -0
- package/force-app/main/default/lwc/quanticNotifications/e2e/quanticNotifications.e2e.ts +47 -0
- package/force-app/main/default/lwc/quanticNumericFacet/__tests__/quanticNumericFacet.test.js +953 -0
- package/force-app/main/default/lwc/quanticNumericFacet/e2e/data.ts +28 -0
- package/force-app/main/default/lwc/quanticNumericFacet/e2e/fixture.ts +71 -0
- package/force-app/main/default/lwc/quanticNumericFacet/e2e/pageObject.ts +59 -0
- package/force-app/main/default/lwc/quanticNumericFacet/e2e/quanticNumericFacet.e2e.ts +164 -0
- package/force-app/main/default/lwc/quanticPager/__tests__/quanticPager.test.js +430 -0
- package/force-app/main/default/lwc/quanticPager/e2e/fixture.ts +65 -0
- package/force-app/main/default/lwc/quanticPager/e2e/pageObject.ts +69 -0
- package/force-app/main/default/lwc/quanticPager/e2e/quanticPager.e2e.ts +106 -0
- package/force-app/main/default/lwc/quanticPlaceholder/__tests__/quanticPlaceholder.test.js +47 -0
- package/force-app/main/default/lwc/quanticQuickviewContent/__tests__/data/defaultTestCase.json +13 -0
- package/force-app/main/default/lwc/quanticQuickviewContent/__tests__/data/youtubeTestCase.json +14 -0
- package/force-app/main/default/lwc/quanticQuickviewContent/__tests__/quanticQuickviewContent.test.js +82 -0
- package/force-app/main/default/lwc/quanticRadioButtonsGroup/__tests__/quanticRadioButtonsGroup.test.js +273 -0
- package/force-app/main/default/lwc/quanticRecentQueriesList/__tests__/quanticRecentQueriesList.test.js +448 -0
- package/force-app/main/default/lwc/quanticRecentQueriesList/e2e/fixture.ts +42 -0
- package/force-app/main/default/lwc/quanticRecentQueriesList/e2e/pageObject.ts +55 -0
- package/force-app/main/default/lwc/quanticRecentQueriesList/e2e/quanticRecentQueriesList.e2e.ts +93 -0
- package/force-app/main/default/lwc/quanticRecentResultsList/__tests__/quanticRecentResultsList.test.js +516 -0
- package/force-app/main/default/lwc/quanticRecentResultsList/e2e/fixture.ts +42 -0
- package/force-app/main/default/lwc/quanticRecentResultsList/e2e/pageObject.ts +61 -0
- package/force-app/main/default/lwc/quanticRecentResultsList/e2e/quanticRecentResultsList.e2e.ts +48 -0
- package/force-app/main/default/lwc/quanticRecommendationList/__tests__/quanticRecommendationList.test.js +491 -0
- package/force-app/main/default/lwc/quanticRecommendationList/e2e/fixture.ts +35 -0
- package/force-app/main/default/lwc/quanticRecommendationList/e2e/pageObject.ts +52 -0
- package/force-app/main/default/lwc/quanticRecommendationList/e2e/quanticRecommendationList.e2e.ts +53 -0
- package/force-app/main/default/lwc/quanticRefineModalContent/__tests__/quanticRefineModalContent.test.js +747 -0
- package/force-app/main/default/lwc/quanticRefineToggle/__tests__/quanticRefineToggle.test.js +542 -0
- package/force-app/main/default/lwc/quanticResultAction/__tests__/quanticResultAction.test.js +262 -0
- package/force-app/main/default/lwc/quanticResultActionBar/__tests__/quanticResultActionBar.test.js +141 -0
- package/force-app/main/default/lwc/quanticResultChildren/__tests__/quanticResultChildren.test.js +340 -0
- package/force-app/main/default/lwc/quanticResultCopyToClipboard/__tests__/quanticResultCopyToClipboard.test.js +300 -0
- package/force-app/main/default/lwc/quanticResultCopyToClipboard/e2e/fixture.ts +46 -0
- package/force-app/main/default/lwc/quanticResultCopyToClipboard/e2e/pageObject.ts +49 -0
- package/force-app/main/default/lwc/quanticResultCopyToClipboard/e2e/quanticResultCopyToClipboard.e2e.ts +40 -0
- package/force-app/main/default/lwc/quanticResultDate/__tests__/quanticResultDate.test.js +144 -0
- package/force-app/main/default/lwc/quanticResultField/__tests__/quanticResultField.test.js +120 -0
- package/force-app/main/default/lwc/quanticResultHighlightedTextField/__tests__/quanticResultHighlightedTextField.test.js +209 -0
- package/force-app/main/default/lwc/quanticResultLink/__tests__/quanticResultLink.test.js +261 -0
- package/force-app/main/default/lwc/quanticResultList/__tests__/quanticResultList.test.js +342 -0
- package/force-app/main/default/lwc/quanticResultList/e2e/fixture.ts +66 -0
- package/force-app/main/default/lwc/quanticResultList/e2e/pageObject.ts +81 -0
- package/force-app/main/default/lwc/quanticResultList/e2e/quanticResultList.e2e.ts +69 -0
- package/force-app/main/default/lwc/quanticResultMultiValueText/__tests__/quanticResultMultiValueText.test.js +235 -0
- package/force-app/main/default/lwc/quanticResultNumber/__tests__/quanticResultNumber.test.js +144 -0
- package/force-app/main/default/lwc/quanticResultPrintableUri/__tests__/quanticResultPrintableUri.test.js +324 -0
- package/force-app/main/default/lwc/quanticResultQuickview/__tests__/quanticResultQuickview.test.js +301 -0
- package/force-app/main/default/lwc/quanticResultQuickview/e2e/fixture.ts +81 -0
- package/force-app/main/default/lwc/quanticResultQuickview/e2e/pageObject.ts +38 -0
- package/force-app/main/default/lwc/quanticResultQuickview/e2e/quanticResultQuickView.e2e.ts +66 -0
- package/force-app/main/default/lwc/quanticResultTemplate/__tests__/quanticResultTemplate.test.js +90 -0
- package/force-app/main/default/lwc/quanticResultText/__tests__/quanticResultText.test.js +155 -0
- package/force-app/main/default/lwc/quanticResultsPerPage/__tests__/quanticResultsPerPage.test.js +464 -0
- package/force-app/main/default/lwc/quanticResultsPerPage/e2e/fixture.ts +74 -0
- package/force-app/main/default/lwc/quanticResultsPerPage/e2e/pageObject.ts +85 -0
- package/force-app/main/default/lwc/quanticResultsPerPage/e2e/quanticResultsPerPage.e2e.ts +97 -0
- package/force-app/main/default/lwc/quanticSearchBox/__tests__/quanticSearchBox.test.js +487 -0
- package/force-app/main/default/lwc/quanticSearchBox/e2e/fixture.ts +84 -0
- package/force-app/main/default/lwc/quanticSearchBox/e2e/pageObject.ts +45 -0
- package/force-app/main/default/lwc/quanticSearchBox/e2e/quanticSearchBox.e2e.ts +159 -0
- package/force-app/main/default/lwc/quanticSearchBoxInput/__tests__/quanticSearchBoxInput.test.js +743 -0
- package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/__tests__/quanticSearchBoxSuggestionsList.test.js +571 -0
- package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/fixture.ts +110 -0
- package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/pageObject.ts +113 -0
- package/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/quanticSearchBoxSuggestionsList.e2e.ts +299 -0
- package/force-app/main/default/lwc/quanticSmartSnippet/__tests__/quanticSmartSnippet.test.js +341 -0
- package/force-app/main/default/lwc/quanticSmartSnippet/e2e/data.ts +21 -0
- package/force-app/main/default/lwc/quanticSmartSnippet/e2e/fixture.ts +91 -0
- package/force-app/main/default/lwc/quanticSmartSnippet/e2e/pageObject.ts +196 -0
- package/force-app/main/default/lwc/quanticSmartSnippet/e2e/quanticSmartSnippet.e2e.ts +192 -0
- package/force-app/main/default/lwc/quanticSmartSnippetAnswer/__tests__/quanticSmartSnippetAnswer.test.js +126 -0
- package/force-app/main/default/lwc/quanticSmartSnippetSource/__tests__/quanticSmartSnippetSource.test.js +290 -0
- package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/__tests__/quanticSmartSnippetSuggestions.test.js +329 -0
- package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/data.ts +31 -0
- package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/fixture.ts +93 -0
- package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/pageObject.ts +160 -0
- package/force-app/main/default/lwc/quanticSmartSnippetSuggestions/e2e/quanticSmartSnippetSuggestions.e2e.ts +127 -0
- package/force-app/main/default/lwc/quanticSort/__tests__/quanticSort.test.js +416 -0
- package/force-app/main/default/lwc/quanticSort/e2e/fixture.ts +61 -0
- package/force-app/main/default/lwc/quanticSort/e2e/pageObject.ts +89 -0
- package/force-app/main/default/lwc/quanticSort/e2e/quanticSort.e2e.ts +91 -0
- package/force-app/main/default/lwc/quanticSourceCitations/__tests__/quanticSourceCitations.test.js +136 -0
- package/force-app/main/default/lwc/quanticStandaloneSearchBox/__tests__/quanticStandaloneSearchBox.test.js +387 -0
- package/force-app/main/default/lwc/quanticStandaloneSearchBox/e2e/fixture.ts +53 -0
- package/force-app/main/default/lwc/quanticStandaloneSearchBox/e2e/pageObject.ts +54 -0
- package/force-app/main/default/lwc/quanticStandaloneSearchBox/e2e/quanticStandaloneSearchBox.e2e.ts +72 -0
- package/force-app/main/default/lwc/quanticStatefulButton/__tests__/quanticStatefulButton.test.js +222 -0
- package/force-app/main/default/lwc/quanticSummary/__tests__/quanticSummary.test.js +244 -0
- package/force-app/main/default/lwc/quanticTab/__tests__/quanticTab.test.js +333 -0
- package/force-app/main/default/lwc/quanticTab/e2e/fixture.ts +56 -0
- package/force-app/main/default/lwc/quanticTab/e2e/pageObject.ts +68 -0
- package/force-app/main/default/lwc/quanticTab/e2e/quanticTab.e2e.ts +72 -0
- package/force-app/main/default/lwc/quanticTabBar/__tests__/quanticTabBar.test.js +331 -0
- package/force-app/main/default/lwc/quanticTabBar/e2e/fixture.ts +61 -0
- package/force-app/main/default/lwc/quanticTabBar/e2e/pageObject.ts +80 -0
- package/force-app/main/default/lwc/quanticTabBar/e2e/quanticTabBar.e2e.ts +171 -0
- package/force-app/main/default/lwc/quanticTimeframeFacet/__tests__/quanticTimeframeFacet.test.js +1037 -0
- package/force-app/main/default/lwc/quanticTimeframeFacet/e2e/fixture.ts +58 -0
- package/force-app/main/default/lwc/quanticTimeframeFacet/e2e/pageObject.ts +43 -0
- package/force-app/main/default/lwc/quanticTimeframeFacet/e2e/quanticTimeframeFacet.e2e.ts +160 -0
- package/force-app/main/default/lwc/quanticTooltip/__tests__/quanticTooltip.test.js +107 -0
- package/force-app/main/default/lwc/quanticUserAction/__tests__/quanticUserAction.test.js +427 -0
- package/force-app/main/default/lwc/quanticUserActionsSession/__tests__/quanticUserActionsSession.test.js +269 -0
- package/force-app/main/default/lwc/quanticUserActionsTimeline/__tests__/data/userActionsState.json +89 -0
- package/force-app/main/default/lwc/quanticUserActionsTimeline/__tests__/quanticUserActionsTimeline.test.js +511 -0
- package/force-app/main/default/lwc/quanticUserActionsToggle/__tests__/quanticUserActionsToggle.test.js +229 -0
- package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/data.ts +32 -0
- package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/fixture.ts +32 -0
- package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/pageObject.ts +71 -0
- package/force-app/main/default/lwc/quanticUserActionsToggle/e2e/quanticUserActionsToggle.e2e.ts +39 -0
- package/force-app/main/default/lwc/quanticUtils/__tests__/citationAnchoringUtils.test.js +84 -0
- package/force-app/main/default/lwc/quanticUtils/__tests__/facetDependenciesUtils.test.js +92 -0
- package/force-app/main/default/lwc/quanticUtils/__tests__/markdownUtils.test.js +71 -0
- package/force-app/main/default/lwc/quanticUtils/__tests__/quanticUtils.test.js +223 -0
- package/force-app/main/default/lwc/quanticUtils/recentQueriesUtils.js +20 -12
- package/force-app/main/default/lwc/quanticViewedByCustomerBadge/__tests__/quanticViewedByCustomerBadge.test.js +131 -0
- package/force-app/main/default/staticresources/coveoheadless/case-assist/headless.js +3 -3
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/case-assist-engine/case-assist-engine.d.ts +3 -3
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/commerce-engine/commerce-engine.d.ts +16 -16
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/common-reducers.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/insight-engine/insight-engine.d.ts +5 -5
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/recommendation-engine/recommendation-engine.d.ts +4 -4
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/search-engine/search-engine.d.ts +4 -4
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/store.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/commerce/core/facets/headless-core-commerce-facet.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/core/facets/range-facet/headless-core-range-facet.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/core/recent-queries-list/headless-core-recent-queries-list.d.ts +91 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/insight/attach-to-case/headless-attach-to-case.d.ts +2 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/insight/attached-results/headless-attached-results.d.ts +68 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/insight/recent-queries-list/headless-insight-recent-queries-list.d.ts +14 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/controllers/recent-queries-list/headless-recent-queries-list.d.ts +2 -79
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/actions-history/ipx-actions-history-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/advanced-search-queries/advanced-search-queries-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/analytics/search-action-cause.d.ts +9 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/attached-results/attached-results-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/attached-results/attached-results-state.d.ts +1 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-assist-configuration/case-assist-configuration-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-context/case-context-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-field/case-field-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-field/case-field-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-input/case-input-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/configuration/configuration-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/context/cart/cart-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/context/cart/cart-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/context/context-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/did-you-mean/did-you-mean-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/facet-search-set/commerce-facet-search-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/facet-set/facet-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/field-suggestions-order/field-suggestions-order-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/facets/numeric-facet/manual-numeric-facet-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/instant-products/instant-products-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/pagination/pagination-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/parameters/parameters-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/product/product-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/product-listing/product-listing-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/product-listing/product-listing-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/query/query-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/query-suggest/query-suggest-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/recent-queries/recent-queries-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/recommendations/recommendations-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/recommendations/recommendations-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/search/search-actions.d.ts +4 -4
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/search/search-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/sort/sort-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/standalone-search-box-set/standalone-search-box-set-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/standalone-search-box-set/standalone-search-box-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/commerce/triggers/triggers-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/configuration/configuration-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/context/context-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/debug/debug-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/debug/version-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/dictionary-field-context/dictionary-field-context-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/did-you-mean/did-you-mean-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/document-suggestion/document-suggestion-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/document-suggestion/document-suggestion-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/excerpt-length/excerpt-length-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facet-options/facet-options-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/automatic-facet-set/automatic-facet-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/category-facet-set/category-facet-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-order/facet-order-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-search-set/category/category-facet-search-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-search-set/generic/generic-facet-search-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-search-set/specific/specific-facet-search-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-set/facet-set-controller-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/facet-set/facet-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/date-facet-set/date-facet-controller-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/date-facet-set/date-facet-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/numeric-facet-set/numeric-facet-controller-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/facets/range-facets/numeric-facet-set/numeric-facet-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/fields/fields-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/fields/fields-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/folding/folding-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/folding/folding-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/folding/insight-folding-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/generated-answer/generated-answer-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/generated-answer/generated-answer-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/history/history-actions.d.ts +3 -3
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/history/history-slice.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-configuration/insight-configuration-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-interface/insight-interface-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-interface/insight-interface-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-search/insight-search-actions.d.ts +5 -5
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-search/legacy/insight-search-actions.d.ts +4 -4
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-user-actions/insight-user-actions-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/insight-user-actions/insight-user-actions-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/instant-results/instant-results-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/pagination/pagination-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/pipeline/pipeline-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/query/query-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/query-set/query-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/query-suggest/query-suggest-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/query-suggest/query-suggest-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/question-answering/question-answering-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/recent-queries/recent-queries-insight-analytics-actions.d.ts +3 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/recent-queries/recent-queries-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/recent-results/recent-results-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/recommendation/recommendation-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/recommendation/recommendation-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/result-preview/result-preview-actions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/result-preview/result-preview-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/search/legacy/search-actions.d.ts +5 -5
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/search/search-actions.d.ts +6 -6
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/search/search-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/search-hub/search-hub-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/sort-criteria/sort-criteria-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/standalone-search-box-set/standalone-search-box-set-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/standalone-search-box-set/standalone-search-box-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/static-filter-set/static-filter-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/tab-set/tab-set-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/triggers/triggers-slice.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/insight.index.d.ts +4 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/factories/build-factory.d.ts +6 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/types/fetch-static-state.d.ts +3 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/types/from-build-result.d.ts +6 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/commerce/types/hydrate-static-state.d.ts +3 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/access-token-manager.d.ts +19 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/augment-preprocess-request.d.ts +7 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/types/fetch-static-state.d.ts +3 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr/common/types/hydrate-static-state.d.ts +3 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/commerce/types/engine.d.ts +4 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/common/access-token-manager.d.ts +19 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/common/augment-preprocess-request.d.ts +7 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/engine/search-engine.ssr.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/state/insight-app-state.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/definitions/test/mock-ssr-controller-definitions.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/headless.js +10 -10
- package/force-app/main/default/staticresources/coveoheadless/insight/headless.js +9 -9
- package/force-app/main/default/staticresources/coveoheadless/recommendation/headless.js +3 -3
- package/package.json +46 -44
|
@@ -0,0 +1,747 @@
|
|
|
1
|
+
/* eslint-disable no-import-assign */
|
|
2
|
+
import QuanticRefineModalContent from 'c/quanticRefineModalContent';
|
|
3
|
+
import * as mockHeadlessLoader from 'c/quanticHeadlessLoader';
|
|
4
|
+
import {cleanup, buildCreateTestComponent, flushPromises} from 'c/testUtils';
|
|
5
|
+
|
|
6
|
+
jest.mock('c/quanticHeadlessLoader');
|
|
7
|
+
|
|
8
|
+
const exampleEngine = {
|
|
9
|
+
id: 'example engine id',
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
const defaultOptions = {
|
|
13
|
+
engineId: exampleEngine.id,
|
|
14
|
+
disableDynamicNavigation: false,
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
const createTestComponent = buildCreateTestComponent(
|
|
18
|
+
QuanticRefineModalContent,
|
|
19
|
+
'c-quantic-refine-modal-content',
|
|
20
|
+
defaultOptions
|
|
21
|
+
);
|
|
22
|
+
|
|
23
|
+
const selectors = {
|
|
24
|
+
initializationError: 'c-quantic-component-error',
|
|
25
|
+
quanticFacet: 'c-quantic-facet',
|
|
26
|
+
quanticCategoryFacet: 'c-quantic-category-facet',
|
|
27
|
+
quanticNumericFacet: 'c-quantic-numeric-facet',
|
|
28
|
+
quanticTimeframeFacet: 'c-quantic-timeframe-facet',
|
|
29
|
+
quanticDateFacet: 'c-quantic-date-facet',
|
|
30
|
+
quanticFacetCaption: 'c-quantic-facet-caption',
|
|
31
|
+
quanticTimeframe: 'c-quantic-timeframe',
|
|
32
|
+
quanticSort: 'c-quantic-sort',
|
|
33
|
+
quanticSortOption: 'c-quantic-sort-option',
|
|
34
|
+
clearActiveFiltersButton: '[data-testid="clear-active-filters-button"]',
|
|
35
|
+
filtersTitle: '[data-testid="filters-title"]',
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
const initialSearchStatusState = {
|
|
39
|
+
hasError: false,
|
|
40
|
+
};
|
|
41
|
+
let searchStatusState = initialSearchStatusState;
|
|
42
|
+
|
|
43
|
+
const initialBreadcrumbManagerState = {};
|
|
44
|
+
let breadcrumbManagerState = initialBreadcrumbManagerState;
|
|
45
|
+
|
|
46
|
+
const functionsMocks = {
|
|
47
|
+
buildBreadcrumbManager: jest.fn(() => ({
|
|
48
|
+
state: breadcrumbManagerState,
|
|
49
|
+
subscribe: functionsMocks.breadcrumbManagerStateSubscriber,
|
|
50
|
+
})),
|
|
51
|
+
buildSearchStatus: jest.fn(() => ({
|
|
52
|
+
state: searchStatusState,
|
|
53
|
+
subscribe: functionsMocks.searchStatusStateSubscriber,
|
|
54
|
+
})),
|
|
55
|
+
breadcrumbManagerStateSubscriber: jest.fn((cb) => {
|
|
56
|
+
cb();
|
|
57
|
+
return functionsMocks.breadcrumbManagerStateUnsubscriber;
|
|
58
|
+
}),
|
|
59
|
+
searchStatusStateSubscriber: jest.fn((cb) => {
|
|
60
|
+
cb();
|
|
61
|
+
return functionsMocks.searchStatusStateUnsubscriber;
|
|
62
|
+
}),
|
|
63
|
+
breadcrumbManagerStateUnsubscriber: jest.fn(),
|
|
64
|
+
searchStatusStateUnsubscriber: jest.fn(),
|
|
65
|
+
retry: jest.fn(),
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
let isInitialized = false;
|
|
69
|
+
|
|
70
|
+
function prepareHeadlessState() {
|
|
71
|
+
// @ts-ignore
|
|
72
|
+
mockHeadlessLoader.getHeadlessBundle = () => {
|
|
73
|
+
return {
|
|
74
|
+
buildBreadcrumbManager: functionsMocks.buildBreadcrumbManager,
|
|
75
|
+
buildSearchStatus: functionsMocks.buildSearchStatus,
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
function setupMockFacetsDataInQuanticStore(facetData) {
|
|
81
|
+
// @ts-ignore
|
|
82
|
+
mockHeadlessLoader.getAllFacetsFromStore = () => {
|
|
83
|
+
return facetData;
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
function setupMockSortDataInQuanticStore(sortData) {
|
|
88
|
+
// @ts-ignore
|
|
89
|
+
mockHeadlessLoader.getAllSortOptionsFromStore = () => {
|
|
90
|
+
return sortData;
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
function mockSuccessfulHeadlessInitialization() {
|
|
95
|
+
// @ts-ignore
|
|
96
|
+
mockHeadlessLoader.initializeWithHeadless = (element, _, initialize) => {
|
|
97
|
+
if (element instanceof QuanticRefineModalContent && !isInitialized) {
|
|
98
|
+
isInitialized = true;
|
|
99
|
+
initialize(exampleEngine);
|
|
100
|
+
}
|
|
101
|
+
};
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
function mockErroneousHeadlessInitialization() {
|
|
105
|
+
// @ts-ignore
|
|
106
|
+
mockHeadlessLoader.initializeWithHeadless = (element) => {
|
|
107
|
+
if (element instanceof QuanticRefineModalContent) {
|
|
108
|
+
element.setInitializationError();
|
|
109
|
+
}
|
|
110
|
+
};
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
const exampleFacetAttributes = {
|
|
114
|
+
facetId: 'filetype',
|
|
115
|
+
field: 'filetype',
|
|
116
|
+
label: 'File Type',
|
|
117
|
+
numberOfValues: '8',
|
|
118
|
+
sortCriteria: 'occurrences',
|
|
119
|
+
noSearch: 'true',
|
|
120
|
+
displayValuesAs: 'link',
|
|
121
|
+
noFilterFacetCount: 'false',
|
|
122
|
+
injectionDepth: '1000',
|
|
123
|
+
customSort: 'YouTubeVideo,PDF,HTML',
|
|
124
|
+
dependsOn: '',
|
|
125
|
+
};
|
|
126
|
+
|
|
127
|
+
const exampleCategoryFacetAttributes = {
|
|
128
|
+
facetId: 'country',
|
|
129
|
+
field: 'country',
|
|
130
|
+
label: 'Country',
|
|
131
|
+
basePath: 'North America',
|
|
132
|
+
noFilterByBasePath: 'false',
|
|
133
|
+
noFilterFacetCount: 'false',
|
|
134
|
+
delimitingCharacter: '>',
|
|
135
|
+
numberOfValues: '10',
|
|
136
|
+
sortCriteria: 'alphanumeric',
|
|
137
|
+
withSearch: 'true',
|
|
138
|
+
dependsOn: '',
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
const exampleNumericFacetAttributes = {
|
|
142
|
+
facetId: 'youtube likes',
|
|
143
|
+
field: 'youtubelikes',
|
|
144
|
+
label: 'Youtube Likes',
|
|
145
|
+
numberOfValues: '8',
|
|
146
|
+
sortCriteria: 'occurrences',
|
|
147
|
+
rangeAlgorithm: '',
|
|
148
|
+
withInput: 'true',
|
|
149
|
+
dependsOn: '',
|
|
150
|
+
};
|
|
151
|
+
|
|
152
|
+
const exampleTimeframeFacetAttributes = {
|
|
153
|
+
facetId: 'date',
|
|
154
|
+
field: 'date',
|
|
155
|
+
label: 'Date',
|
|
156
|
+
noFilterFacetCount: true,
|
|
157
|
+
injectionDepth: 100,
|
|
158
|
+
withDatePicker: true,
|
|
159
|
+
dependsOn: '',
|
|
160
|
+
};
|
|
161
|
+
|
|
162
|
+
const exampleDateFacetAttributes = {
|
|
163
|
+
facetId: 'date',
|
|
164
|
+
field: 'date',
|
|
165
|
+
label: 'Date',
|
|
166
|
+
numberOfValues: 8,
|
|
167
|
+
dependsOn: '',
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
const exampleTimeframeAttributes = {
|
|
171
|
+
period: 'past',
|
|
172
|
+
unit: 'month',
|
|
173
|
+
amount: 6,
|
|
174
|
+
label: 'last 6 months',
|
|
175
|
+
};
|
|
176
|
+
|
|
177
|
+
const exampleSortOptionAttributes = {
|
|
178
|
+
label: 'Views Descending',
|
|
179
|
+
value: '@ytviewcount descending',
|
|
180
|
+
criterion: {
|
|
181
|
+
by: 'field',
|
|
182
|
+
field: 'ytviewcount',
|
|
183
|
+
order: 'descending',
|
|
184
|
+
},
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
describe('c-quantic-refine-modal-content', () => {
|
|
188
|
+
beforeEach(() => {
|
|
189
|
+
mockSuccessfulHeadlessInitialization();
|
|
190
|
+
prepareHeadlessState();
|
|
191
|
+
});
|
|
192
|
+
|
|
193
|
+
afterEach(() => {
|
|
194
|
+
cleanup();
|
|
195
|
+
isInitialized = false;
|
|
196
|
+
searchStatusState = initialSearchStatusState;
|
|
197
|
+
breadcrumbManagerState = initialBreadcrumbManagerState;
|
|
198
|
+
});
|
|
199
|
+
|
|
200
|
+
describe('when an initialization error occurs', () => {
|
|
201
|
+
beforeEach(() => {
|
|
202
|
+
mockErroneousHeadlessInitialization();
|
|
203
|
+
});
|
|
204
|
+
|
|
205
|
+
it('should display the initialization error component', async () => {
|
|
206
|
+
const element = createTestComponent();
|
|
207
|
+
await flushPromises();
|
|
208
|
+
|
|
209
|
+
const initializationError = element.shadowRoot.querySelector(
|
|
210
|
+
selectors.initializationError
|
|
211
|
+
);
|
|
212
|
+
|
|
213
|
+
expect(initializationError).not.toBeNull();
|
|
214
|
+
});
|
|
215
|
+
});
|
|
216
|
+
|
|
217
|
+
describe('controller initialization', () => {
|
|
218
|
+
it('should build the breadcrumb manager and search status controllers with the proper parameters', async () => {
|
|
219
|
+
createTestComponent();
|
|
220
|
+
await flushPromises();
|
|
221
|
+
expect(functionsMocks.buildBreadcrumbManager).toHaveBeenCalledTimes(1);
|
|
222
|
+
expect(functionsMocks.buildBreadcrumbManager).toHaveBeenCalledWith(
|
|
223
|
+
exampleEngine
|
|
224
|
+
);
|
|
225
|
+
expect(functionsMocks.buildSearchStatus).toHaveBeenCalledTimes(1);
|
|
226
|
+
expect(functionsMocks.buildSearchStatus).toHaveBeenCalledWith(
|
|
227
|
+
exampleEngine
|
|
228
|
+
);
|
|
229
|
+
});
|
|
230
|
+
|
|
231
|
+
it('should subscribe to the headless breadcrumb manager and search status state changes', async () => {
|
|
232
|
+
createTestComponent();
|
|
233
|
+
await flushPromises();
|
|
234
|
+
|
|
235
|
+
expect(
|
|
236
|
+
functionsMocks.breadcrumbManagerStateSubscriber
|
|
237
|
+
).toHaveBeenCalledTimes(1);
|
|
238
|
+
expect(functionsMocks.searchStatusStateSubscriber).toHaveBeenCalledTimes(
|
|
239
|
+
1
|
|
240
|
+
);
|
|
241
|
+
});
|
|
242
|
+
});
|
|
243
|
+
|
|
244
|
+
[true, false].forEach((disableDynamicNavigationValue) => {
|
|
245
|
+
describe(`when the dynamic navigation feature is ${disableDynamicNavigationValue ? 'disabled' : 'enabled'}`, () => {
|
|
246
|
+
describe('standard facet', () => {
|
|
247
|
+
beforeEach(() => {
|
|
248
|
+
mockSuccessfulHeadlessInitialization();
|
|
249
|
+
prepareHeadlessState();
|
|
250
|
+
setupMockFacetsDataInQuanticStore({
|
|
251
|
+
filetype: {
|
|
252
|
+
label: 'File Type',
|
|
253
|
+
facetId: 'filetype',
|
|
254
|
+
element: {
|
|
255
|
+
localName: 'c-quantic-facet',
|
|
256
|
+
...exampleFacetAttributes,
|
|
257
|
+
},
|
|
258
|
+
metadata: {
|
|
259
|
+
customCaptions: [],
|
|
260
|
+
},
|
|
261
|
+
},
|
|
262
|
+
});
|
|
263
|
+
});
|
|
264
|
+
|
|
265
|
+
it('should display the quantic facet with its attributes and without custom captions', async () => {
|
|
266
|
+
const element = createTestComponent({
|
|
267
|
+
...defaultOptions,
|
|
268
|
+
disableDynamicNavigation: disableDynamicNavigationValue,
|
|
269
|
+
});
|
|
270
|
+
await flushPromises();
|
|
271
|
+
|
|
272
|
+
const quanticFacet = element.shadowRoot.querySelector(
|
|
273
|
+
selectors.quanticFacet
|
|
274
|
+
);
|
|
275
|
+
|
|
276
|
+
expect(quanticFacet).not.toBeNull();
|
|
277
|
+
expect(quanticFacet.engineId).toBe(exampleEngine.id);
|
|
278
|
+
Object.entries(exampleFacetAttributes).forEach(([key, value]) => {
|
|
279
|
+
expect(quanticFacet[key]).toBe(value);
|
|
280
|
+
});
|
|
281
|
+
|
|
282
|
+
const quanticFacetCaption = element.shadowRoot.querySelector(
|
|
283
|
+
selectors.quanticFacetCaption
|
|
284
|
+
);
|
|
285
|
+
|
|
286
|
+
expect(quanticFacetCaption).toBeNull();
|
|
287
|
+
});
|
|
288
|
+
|
|
289
|
+
describe('when a standard facet is registered in the store with custom captions', () => {
|
|
290
|
+
const exampleCaption = {
|
|
291
|
+
value: 'YouTubeVideo',
|
|
292
|
+
caption: 'YouTube Video',
|
|
293
|
+
};
|
|
294
|
+
|
|
295
|
+
beforeEach(() => {
|
|
296
|
+
mockSuccessfulHeadlessInitialization();
|
|
297
|
+
prepareHeadlessState();
|
|
298
|
+
setupMockFacetsDataInQuanticStore({
|
|
299
|
+
filetype: {
|
|
300
|
+
label: 'File Type',
|
|
301
|
+
facetId: 'filetype',
|
|
302
|
+
element: {
|
|
303
|
+
localName: 'c-quantic-facet',
|
|
304
|
+
...exampleFacetAttributes,
|
|
305
|
+
},
|
|
306
|
+
metadata: {
|
|
307
|
+
customCaptions: [exampleCaption],
|
|
308
|
+
},
|
|
309
|
+
},
|
|
310
|
+
});
|
|
311
|
+
});
|
|
312
|
+
|
|
313
|
+
it('should display the quantic facet with its custom captions and attributes', async () => {
|
|
314
|
+
const element = createTestComponent({
|
|
315
|
+
...defaultOptions,
|
|
316
|
+
disableDynamicNavigation: disableDynamicNavigationValue,
|
|
317
|
+
});
|
|
318
|
+
await flushPromises();
|
|
319
|
+
|
|
320
|
+
const quanticFacet = element.shadowRoot.querySelector(
|
|
321
|
+
selectors.quanticFacet
|
|
322
|
+
);
|
|
323
|
+
|
|
324
|
+
expect(quanticFacet).not.toBeNull();
|
|
325
|
+
expect(quanticFacet.engineId).toBe(exampleEngine.id);
|
|
326
|
+
|
|
327
|
+
const quanticFacetCaption = element.shadowRoot.querySelector(
|
|
328
|
+
selectors.quanticFacetCaption
|
|
329
|
+
);
|
|
330
|
+
|
|
331
|
+
expect(quanticFacetCaption).not.toBeNull();
|
|
332
|
+
expect(quanticFacetCaption.value).toBe(exampleCaption.value);
|
|
333
|
+
expect(quanticFacetCaption.caption).toBe(exampleCaption.caption);
|
|
334
|
+
});
|
|
335
|
+
});
|
|
336
|
+
});
|
|
337
|
+
|
|
338
|
+
describe('category facet', () => {
|
|
339
|
+
beforeEach(() => {
|
|
340
|
+
mockSuccessfulHeadlessInitialization();
|
|
341
|
+
prepareHeadlessState();
|
|
342
|
+
setupMockFacetsDataInQuanticStore({
|
|
343
|
+
country: {
|
|
344
|
+
label: 'Country',
|
|
345
|
+
facetId: 'country',
|
|
346
|
+
element: {
|
|
347
|
+
localName: 'c-quantic-category-facet',
|
|
348
|
+
...exampleCategoryFacetAttributes,
|
|
349
|
+
},
|
|
350
|
+
metadata: {
|
|
351
|
+
customCaptions: [],
|
|
352
|
+
},
|
|
353
|
+
},
|
|
354
|
+
});
|
|
355
|
+
});
|
|
356
|
+
|
|
357
|
+
it('should display the quantic category facet with its attributes and without custom captions', async () => {
|
|
358
|
+
const element = createTestComponent({
|
|
359
|
+
...defaultOptions,
|
|
360
|
+
disableDynamicNavigation: disableDynamicNavigationValue,
|
|
361
|
+
});
|
|
362
|
+
await flushPromises();
|
|
363
|
+
|
|
364
|
+
const quanticCategoryFacet = element.shadowRoot.querySelector(
|
|
365
|
+
selectors.quanticCategoryFacet
|
|
366
|
+
);
|
|
367
|
+
|
|
368
|
+
expect(quanticCategoryFacet).not.toBeNull();
|
|
369
|
+
expect(quanticCategoryFacet.engineId).toBe(exampleEngine.id);
|
|
370
|
+
Object.entries(exampleCategoryFacetAttributes).forEach(
|
|
371
|
+
([key, value]) => {
|
|
372
|
+
expect(quanticCategoryFacet[key]).toBe(value);
|
|
373
|
+
}
|
|
374
|
+
);
|
|
375
|
+
|
|
376
|
+
const quanticFacetCaption = element.shadowRoot.querySelector(
|
|
377
|
+
selectors.quanticFacetCaption
|
|
378
|
+
);
|
|
379
|
+
expect(quanticFacetCaption).toBeNull();
|
|
380
|
+
});
|
|
381
|
+
|
|
382
|
+
describe('when a category facet is registered in the store with custom captions', () => {
|
|
383
|
+
const exampleCaption = {
|
|
384
|
+
value: 'Ca',
|
|
385
|
+
caption: 'Canada',
|
|
386
|
+
};
|
|
387
|
+
|
|
388
|
+
beforeEach(() => {
|
|
389
|
+
mockSuccessfulHeadlessInitialization();
|
|
390
|
+
prepareHeadlessState();
|
|
391
|
+
setupMockFacetsDataInQuanticStore({
|
|
392
|
+
country: {
|
|
393
|
+
label: 'Country',
|
|
394
|
+
facetId: 'country',
|
|
395
|
+
element: {
|
|
396
|
+
localName: 'c-quantic-category-facet',
|
|
397
|
+
...exampleCategoryFacetAttributes,
|
|
398
|
+
},
|
|
399
|
+
metadata: {
|
|
400
|
+
customCaptions: [exampleCaption],
|
|
401
|
+
},
|
|
402
|
+
},
|
|
403
|
+
});
|
|
404
|
+
});
|
|
405
|
+
|
|
406
|
+
it('should display the quantic category facet with its custom captions', async () => {
|
|
407
|
+
const element = createTestComponent({
|
|
408
|
+
...defaultOptions,
|
|
409
|
+
disableDynamicNavigation: disableDynamicNavigationValue,
|
|
410
|
+
});
|
|
411
|
+
await flushPromises();
|
|
412
|
+
|
|
413
|
+
const quanticCategoryFacet = element.shadowRoot.querySelector(
|
|
414
|
+
selectors.quanticCategoryFacet
|
|
415
|
+
);
|
|
416
|
+
|
|
417
|
+
expect(quanticCategoryFacet).not.toBeNull();
|
|
418
|
+
expect(quanticCategoryFacet.engineId).toBe(exampleEngine.id);
|
|
419
|
+
|
|
420
|
+
const quanticFacetCaption = element.shadowRoot.querySelector(
|
|
421
|
+
selectors.quanticFacetCaption
|
|
422
|
+
);
|
|
423
|
+
|
|
424
|
+
expect(quanticFacetCaption).not.toBeNull();
|
|
425
|
+
expect(quanticFacetCaption.value).toBe(exampleCaption.value);
|
|
426
|
+
expect(quanticFacetCaption.caption).toBe(exampleCaption.caption);
|
|
427
|
+
});
|
|
428
|
+
});
|
|
429
|
+
});
|
|
430
|
+
|
|
431
|
+
describe('numeric facet', () => {
|
|
432
|
+
beforeEach(() => {
|
|
433
|
+
mockSuccessfulHeadlessInitialization();
|
|
434
|
+
prepareHeadlessState();
|
|
435
|
+
setupMockFacetsDataInQuanticStore({
|
|
436
|
+
filetype: {
|
|
437
|
+
label: 'Youtube Likes',
|
|
438
|
+
facetId: 'youtubelikes',
|
|
439
|
+
element: {
|
|
440
|
+
localName: 'c-quantic-numeric-facet',
|
|
441
|
+
...exampleNumericFacetAttributes,
|
|
442
|
+
},
|
|
443
|
+
},
|
|
444
|
+
});
|
|
445
|
+
});
|
|
446
|
+
|
|
447
|
+
it('should display the quantic numeric facet with its attributes', async () => {
|
|
448
|
+
const element = createTestComponent({
|
|
449
|
+
...defaultOptions,
|
|
450
|
+
disableDynamicNavigation: disableDynamicNavigationValue,
|
|
451
|
+
});
|
|
452
|
+
await flushPromises();
|
|
453
|
+
|
|
454
|
+
const quanticNumericFacet = element.shadowRoot.querySelector(
|
|
455
|
+
selectors.quanticNumericFacet
|
|
456
|
+
);
|
|
457
|
+
|
|
458
|
+
expect(quanticNumericFacet).not.toBeNull();
|
|
459
|
+
expect(quanticNumericFacet.engineId).toBe(exampleEngine.id);
|
|
460
|
+
Object.entries(exampleNumericFacetAttributes).forEach(
|
|
461
|
+
([key, value]) => {
|
|
462
|
+
expect(quanticNumericFacet[key]).toBe(value);
|
|
463
|
+
}
|
|
464
|
+
);
|
|
465
|
+
});
|
|
466
|
+
});
|
|
467
|
+
|
|
468
|
+
describe('timeframe facet', () => {
|
|
469
|
+
beforeEach(() => {
|
|
470
|
+
mockSuccessfulHeadlessInitialization();
|
|
471
|
+
prepareHeadlessState();
|
|
472
|
+
setupMockFacetsDataInQuanticStore({
|
|
473
|
+
filetype: {
|
|
474
|
+
label: 'Date',
|
|
475
|
+
facetId: 'date',
|
|
476
|
+
element: {
|
|
477
|
+
localName: 'c-quantic-timeframe-facet',
|
|
478
|
+
...exampleTimeframeFacetAttributes,
|
|
479
|
+
},
|
|
480
|
+
metadata: {
|
|
481
|
+
timeframes: [exampleTimeframeAttributes],
|
|
482
|
+
},
|
|
483
|
+
},
|
|
484
|
+
});
|
|
485
|
+
});
|
|
486
|
+
|
|
487
|
+
it('should display the quantic timeframe facet with its attributes', async () => {
|
|
488
|
+
const element = createTestComponent();
|
|
489
|
+
await flushPromises();
|
|
490
|
+
|
|
491
|
+
const quanticTimeframeFacet = element.shadowRoot.querySelector(
|
|
492
|
+
selectors.quanticTimeframeFacet
|
|
493
|
+
);
|
|
494
|
+
|
|
495
|
+
expect(quanticTimeframeFacet).not.toBeNull();
|
|
496
|
+
expect(quanticTimeframeFacet.engineId).toBe(exampleEngine.id);
|
|
497
|
+
Object.entries(exampleTimeframeFacetAttributes).forEach(
|
|
498
|
+
([key, value]) => {
|
|
499
|
+
expect(quanticTimeframeFacet[key]).toBe(value);
|
|
500
|
+
}
|
|
501
|
+
);
|
|
502
|
+
|
|
503
|
+
const quanticTimeframe = element.shadowRoot.querySelector(
|
|
504
|
+
selectors.quanticTimeframe
|
|
505
|
+
);
|
|
506
|
+
|
|
507
|
+
expect(quanticTimeframe).not.toBeNull();
|
|
508
|
+
Object.entries(exampleTimeframeAttributes).forEach(([key, value]) => {
|
|
509
|
+
expect(quanticTimeframe[key]).toBe(value);
|
|
510
|
+
});
|
|
511
|
+
});
|
|
512
|
+
});
|
|
513
|
+
|
|
514
|
+
describe('date facet', () => {
|
|
515
|
+
beforeEach(() => {
|
|
516
|
+
mockSuccessfulHeadlessInitialization();
|
|
517
|
+
prepareHeadlessState();
|
|
518
|
+
setupMockFacetsDataInQuanticStore({
|
|
519
|
+
filetype: {
|
|
520
|
+
label: 'Date',
|
|
521
|
+
facetId: 'date',
|
|
522
|
+
element: {
|
|
523
|
+
localName: 'c-quantic-date-facet',
|
|
524
|
+
...exampleDateFacetAttributes,
|
|
525
|
+
},
|
|
526
|
+
},
|
|
527
|
+
});
|
|
528
|
+
});
|
|
529
|
+
|
|
530
|
+
it('should display the quantic date facet with its attributes', async () => {
|
|
531
|
+
const element = createTestComponent({
|
|
532
|
+
...defaultOptions,
|
|
533
|
+
disableDynamicNavigation: disableDynamicNavigationValue,
|
|
534
|
+
});
|
|
535
|
+
await flushPromises();
|
|
536
|
+
|
|
537
|
+
const quanticDateFacet = element.shadowRoot.querySelector(
|
|
538
|
+
selectors.quanticDateFacet
|
|
539
|
+
);
|
|
540
|
+
|
|
541
|
+
expect(quanticDateFacet).not.toBeNull();
|
|
542
|
+
expect(quanticDateFacet.engineId).toBe(exampleEngine.id);
|
|
543
|
+
Object.entries(exampleDateFacetAttributes).forEach(([key, value]) => {
|
|
544
|
+
expect(quanticDateFacet[key]).toBe(value);
|
|
545
|
+
});
|
|
546
|
+
});
|
|
547
|
+
});
|
|
548
|
+
|
|
549
|
+
describe('the sort component', () => {
|
|
550
|
+
beforeEach(() => {
|
|
551
|
+
mockSuccessfulHeadlessInitialization();
|
|
552
|
+
prepareHeadlessState();
|
|
553
|
+
setupMockSortDataInQuanticStore([exampleSortOptionAttributes]);
|
|
554
|
+
});
|
|
555
|
+
|
|
556
|
+
it('should display the quantic sort component with its attributes', async () => {
|
|
557
|
+
const element = createTestComponent({
|
|
558
|
+
...defaultOptions,
|
|
559
|
+
disableDynamicNavigation: disableDynamicNavigationValue,
|
|
560
|
+
});
|
|
561
|
+
await flushPromises();
|
|
562
|
+
|
|
563
|
+
const quanticSort = element.shadowRoot.querySelector(
|
|
564
|
+
selectors.quanticSort
|
|
565
|
+
);
|
|
566
|
+
|
|
567
|
+
expect(quanticSort).not.toBeNull();
|
|
568
|
+
expect(quanticSort.engineId).toBe(exampleEngine.id);
|
|
569
|
+
expect(quanticSort.variant).toBe('wide');
|
|
570
|
+
|
|
571
|
+
const quanticSortOption = element.shadowRoot.querySelector(
|
|
572
|
+
selectors.quanticSortOption
|
|
573
|
+
);
|
|
574
|
+
|
|
575
|
+
expect(quanticSortOption).not.toBeNull();
|
|
576
|
+
Object.entries(exampleSortOptionAttributes).forEach(
|
|
577
|
+
([key, value]) => {
|
|
578
|
+
expect(quanticSortOption[key]).toEqual(value);
|
|
579
|
+
}
|
|
580
|
+
);
|
|
581
|
+
});
|
|
582
|
+
});
|
|
583
|
+
|
|
584
|
+
describe('the clear all filters button', () => {
|
|
585
|
+
describe('when there are active filters', () => {
|
|
586
|
+
beforeEach(() => {
|
|
587
|
+
setupMockFacetsDataInQuanticStore({
|
|
588
|
+
filetype: {
|
|
589
|
+
label: 'File Type',
|
|
590
|
+
facetId: 'filetype',
|
|
591
|
+
element: {
|
|
592
|
+
localName: 'c-quantic-facet',
|
|
593
|
+
...exampleFacetAttributes,
|
|
594
|
+
},
|
|
595
|
+
metadata: {
|
|
596
|
+
customCaptions: [],
|
|
597
|
+
},
|
|
598
|
+
},
|
|
599
|
+
});
|
|
600
|
+
breadcrumbManagerState = {
|
|
601
|
+
...breadcrumbManagerState,
|
|
602
|
+
hasBreadcrumbs: true,
|
|
603
|
+
};
|
|
604
|
+
});
|
|
605
|
+
|
|
606
|
+
it('should display the clear all filters button', async () => {
|
|
607
|
+
const element = createTestComponent({
|
|
608
|
+
...defaultOptions,
|
|
609
|
+
disableDynamicNavigation: disableDynamicNavigationValue,
|
|
610
|
+
});
|
|
611
|
+
await flushPromises();
|
|
612
|
+
|
|
613
|
+
const clearActiveFiltersButton = element.shadowRoot.querySelector(
|
|
614
|
+
selectors.clearActiveFiltersButton
|
|
615
|
+
);
|
|
616
|
+
|
|
617
|
+
expect(clearActiveFiltersButton).not.toBeNull();
|
|
618
|
+
});
|
|
619
|
+
});
|
|
620
|
+
|
|
621
|
+
describe('when there are no active filters', () => {
|
|
622
|
+
beforeEach(() => {
|
|
623
|
+
setupMockFacetsDataInQuanticStore({
|
|
624
|
+
filetype: {
|
|
625
|
+
label: 'File Type',
|
|
626
|
+
facetId: 'filetype',
|
|
627
|
+
element: {
|
|
628
|
+
localName: 'c-quantic-facet',
|
|
629
|
+
...exampleFacetAttributes,
|
|
630
|
+
},
|
|
631
|
+
metadata: {
|
|
632
|
+
customCaptions: [],
|
|
633
|
+
},
|
|
634
|
+
},
|
|
635
|
+
});
|
|
636
|
+
breadcrumbManagerState = {
|
|
637
|
+
...breadcrumbManagerState,
|
|
638
|
+
hasBreadcrumbs: false,
|
|
639
|
+
};
|
|
640
|
+
});
|
|
641
|
+
|
|
642
|
+
it('should not display the clear all filters button', async () => {
|
|
643
|
+
const element = createTestComponent({
|
|
644
|
+
...defaultOptions,
|
|
645
|
+
disableDynamicNavigation: disableDynamicNavigationValue,
|
|
646
|
+
});
|
|
647
|
+
await flushPromises();
|
|
648
|
+
|
|
649
|
+
const clearActiveFiltersButton = element.shadowRoot.querySelector(
|
|
650
|
+
selectors.clearActiveFiltersButton
|
|
651
|
+
);
|
|
652
|
+
|
|
653
|
+
expect(clearActiveFiltersButton).toBeNull();
|
|
654
|
+
});
|
|
655
|
+
});
|
|
656
|
+
});
|
|
657
|
+
|
|
658
|
+
describe('the filters title', () => {
|
|
659
|
+
beforeEach(() => {
|
|
660
|
+
setupMockFacetsDataInQuanticStore({
|
|
661
|
+
filetype: {
|
|
662
|
+
label: 'File Type',
|
|
663
|
+
facetId: 'filetype',
|
|
664
|
+
element: {
|
|
665
|
+
localName: 'c-quantic-facet',
|
|
666
|
+
...exampleFacetAttributes,
|
|
667
|
+
},
|
|
668
|
+
metadata: {
|
|
669
|
+
customCaptions: [],
|
|
670
|
+
},
|
|
671
|
+
},
|
|
672
|
+
});
|
|
673
|
+
breadcrumbManagerState = {
|
|
674
|
+
...breadcrumbManagerState,
|
|
675
|
+
hasBreadcrumbs: true,
|
|
676
|
+
};
|
|
677
|
+
});
|
|
678
|
+
|
|
679
|
+
describe('when hideSort is set to false and a facet is rendered', () => {
|
|
680
|
+
it('should display the filters title', async () => {
|
|
681
|
+
const element = createTestComponent({
|
|
682
|
+
...defaultOptions,
|
|
683
|
+
hideSort: false,
|
|
684
|
+
disableDynamicNavigation: disableDynamicNavigationValue,
|
|
685
|
+
});
|
|
686
|
+
const renderFacetEvent = new CustomEvent('quantic__renderfacet', {
|
|
687
|
+
detail: {
|
|
688
|
+
id: 'filetype',
|
|
689
|
+
shouldRenderFacet: true,
|
|
690
|
+
},
|
|
691
|
+
});
|
|
692
|
+
element.dispatchEvent(renderFacetEvent);
|
|
693
|
+
|
|
694
|
+
await flushPromises();
|
|
695
|
+
|
|
696
|
+
const filtersTitle = element.shadowRoot.querySelector(
|
|
697
|
+
selectors.filtersTitle
|
|
698
|
+
);
|
|
699
|
+
|
|
700
|
+
expect(filtersTitle).not.toBeNull();
|
|
701
|
+
});
|
|
702
|
+
});
|
|
703
|
+
|
|
704
|
+
describe('when hideSort is set to true and a facet is rendered', () => {
|
|
705
|
+
it('should not display the filters title', async () => {
|
|
706
|
+
const element = createTestComponent({
|
|
707
|
+
...defaultOptions,
|
|
708
|
+
hideSort: true,
|
|
709
|
+
disableDynamicNavigation: disableDynamicNavigationValue,
|
|
710
|
+
});
|
|
711
|
+
const renderFacetEvent = new CustomEvent('quantic__renderfacet', {
|
|
712
|
+
detail: {
|
|
713
|
+
id: 'filetype',
|
|
714
|
+
shouldRenderFacet: true,
|
|
715
|
+
},
|
|
716
|
+
});
|
|
717
|
+
element.dispatchEvent(renderFacetEvent);
|
|
718
|
+
|
|
719
|
+
await flushPromises();
|
|
720
|
+
|
|
721
|
+
const filtersTitle = element.shadowRoot.querySelector(
|
|
722
|
+
selectors.filtersTitle
|
|
723
|
+
);
|
|
724
|
+
|
|
725
|
+
expect(filtersTitle).toBeNull();
|
|
726
|
+
});
|
|
727
|
+
});
|
|
728
|
+
|
|
729
|
+
describe('when no facet is rendered', () => {
|
|
730
|
+
it('should not display the filters title', async () => {
|
|
731
|
+
const element = createTestComponent({
|
|
732
|
+
...defaultOptions,
|
|
733
|
+
disableDynamicNavigation: disableDynamicNavigationValue,
|
|
734
|
+
});
|
|
735
|
+
await flushPromises();
|
|
736
|
+
|
|
737
|
+
const filtersTitle = element.shadowRoot.querySelector(
|
|
738
|
+
selectors.filtersTitle
|
|
739
|
+
);
|
|
740
|
+
|
|
741
|
+
expect(filtersTitle).toBeNull();
|
|
742
|
+
});
|
|
743
|
+
});
|
|
744
|
+
});
|
|
745
|
+
});
|
|
746
|
+
});
|
|
747
|
+
});
|