@coveo/quantic 3.33.2 → 3.33.3
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/force-app/main/default/lwc/quanticSearchBoxSuggestionsList/e2e/quanticSearchBoxSuggestionsList.e2e.ts +0 -17
- package/force-app/main/default/staticresources/coveoheadless/case-assist/headless.js +8 -8
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/generated-answer/generated-answer-analytics-actions.d.ts +1 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/generated-answer/generated-answer-insight-analytics-actions.d.ts +1 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/commerce/types/controller-definitions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/controller-utils.d.ts +6 -4
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/engine/search-engine.ssr.d.ts +13 -25
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/factories/build-factory.d.ts +8 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/factories/hydrated-state-factory.d.ts +5 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/factories/static-state-factory.d.ts +3 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/types/build.d.ts +16 -7
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/types/controller-definition.d.ts +19 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/types/engine.d.ts +26 -8
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/types/fetch-static-state.d.ts +2 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/utils/controller-wiring.d.ts +21 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next/search/utils/engine-wiring.d.ts +4 -0
- package/force-app/main/default/staticresources/coveoheadless/definitions/ssr-next.index.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/test/mock-ssr-controller-definitions.d.ts +12 -0
- 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 +7 -7
- package/package.json +2 -2
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import {testSearch, testInsight} from './fixture';
|
|
2
2
|
import {
|
|
3
3
|
useCaseTestCases,
|
|
4
|
-
useCaseEnum,
|
|
5
4
|
} from '../../../../../../playwright/utils/useCase';
|
|
6
5
|
import {
|
|
7
6
|
AnalyticsModeEnum,
|
|
@@ -117,10 +116,6 @@ useCaseTestCases.forEach((useCase) => {
|
|
|
117
116
|
});
|
|
118
117
|
|
|
119
118
|
test.describe('when clicking on a recent query', () => {
|
|
120
|
-
test.skip(
|
|
121
|
-
useCase.value === useCaseEnum.insight,
|
|
122
|
-
'Recent queries are not available in Insight use case'
|
|
123
|
-
);
|
|
124
119
|
test.use({
|
|
125
120
|
recentQueries: mockRecentQueries,
|
|
126
121
|
});
|
|
@@ -157,10 +152,6 @@ useCaseTestCases.forEach((useCase) => {
|
|
|
157
152
|
});
|
|
158
153
|
|
|
159
154
|
test.describe('when clicking on the clear recent queries button', () => {
|
|
160
|
-
test.skip(
|
|
161
|
-
useCase.value === useCaseEnum.insight,
|
|
162
|
-
'Recent queries are not available in Insight use case'
|
|
163
|
-
);
|
|
164
155
|
test.use({
|
|
165
156
|
recentQueries: mockRecentQueries,
|
|
166
157
|
});
|
|
@@ -224,10 +215,6 @@ useCaseTestCases.forEach((useCase) => {
|
|
|
224
215
|
});
|
|
225
216
|
|
|
226
217
|
test.describe('when selecting a recent query', () => {
|
|
227
|
-
test.skip(
|
|
228
|
-
useCase.value === useCaseEnum.insight,
|
|
229
|
-
'Recent queries are not available in Insight use case'
|
|
230
|
-
);
|
|
231
218
|
test.use({
|
|
232
219
|
recentQueries: mockRecentQueries,
|
|
233
220
|
});
|
|
@@ -265,10 +252,6 @@ useCaseTestCases.forEach((useCase) => {
|
|
|
265
252
|
});
|
|
266
253
|
|
|
267
254
|
test.describe('when selecting the clear recent queries button', () => {
|
|
268
|
-
test.skip(
|
|
269
|
-
useCase.value === useCaseEnum.insight,
|
|
270
|
-
'Recent queries are not available in Insight use case'
|
|
271
|
-
);
|
|
272
255
|
test.use({
|
|
273
256
|
recentQueries: mockRecentQueries,
|
|
274
257
|
});
|