diff --git a/lib/content-services/src/lib/search/components/search-control.component.spec.ts b/lib/content-services/src/lib/search/components/search-control.component.spec.ts index 494001595f..7b0fe22190 100644 --- a/lib/content-services/src/lib/search/components/search-control.component.spec.ts +++ b/lib/content-services/src/lib/search/components/search-control.component.spec.ts @@ -415,13 +415,13 @@ describe('SearchControlComponent', () => { it('should have positive transform translation', () => { userPreferencesService.setWithoutStore('textOrientation', 'ltr'); fixture.detectChanges(); - expect(component.searchTextInput.subscriptAnimationState.params.transform).toBe('translateX(82%)'); + expect(component.searchTextInput.subscriptAnimationState.params.transform).toBe('translateX(95%)'); }); it('should have negative transform translation ', () => { userPreferencesService.setWithoutStore('textOrientation', 'rtl'); fixture.detectChanges(); - expect(component.searchTextInput.subscriptAnimationState.params.transform).toBe('translateX(-82%)'); + expect(component.searchTextInput.subscriptAnimationState.params.transform).toBe('translateX(-95%)'); }); }); }); diff --git a/lib/core/src/lib/buttons-menu/buttons-menu.component.stories.ts b/lib/core/src/lib/buttons-menu/buttons-menu.component.stories.ts deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/lib/core/src/lib/buttons-menu/buttons-menu.module.ts b/lib/core/src/lib/buttons-menu/buttons-menu.module.ts deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/lib/core/src/lib/search-text/search-text-input.component.spec.ts b/lib/core/src/lib/search-text/search-text-input.component.spec.ts index a6ca950c46..bf8732d4e9 100644 --- a/lib/core/src/lib/search-text/search-text-input.component.spec.ts +++ b/lib/core/src/lib/search-text/search-text-input.component.spec.ts @@ -206,7 +206,7 @@ describe('SearchTextInputComponent', () => { fixture.detectChanges(); tick(100); - expect(component.subscriptAnimationState.params).toEqual({ transform: 'translateX(82%)' }); + expect(component.subscriptAnimationState.params).toEqual({ transform: 'translateX(95%)' }); discardPeriodicTasks(); })); @@ -237,7 +237,7 @@ describe('SearchTextInputComponent', () => { fixture.detectChanges(); tick(100); - expect(component.subscriptAnimationState.params).toEqual({ transform: 'translateX(-82%)' }); + expect(component.subscriptAnimationState.params).toEqual({ transform: 'translateX(-95%)' }); discardPeriodicTasks(); }));