Skip to content
Snippets Groups Projects

feat(vector-map): implement line scaling

Merged Miłosz Grocholewski requested to merge feat/MIN-66-line-scaling into development
2 unresolved threads
Files
25
@@ -89,7 +89,7 @@ describe('SearchBar - component', () => {
const { store } = renderComponent({
reactions: {
...INITIAL_STORE_STATE_MOCK.reactions,
reactions: { ...INITIAL_STORE_STATE_MOCK.reactions.reactions, data: reactionsFixture },
data: reactionsFixture,
},
});
const input = screen.getByTestId<HTMLInputElement>('search-input');
@@ -102,7 +102,7 @@ describe('SearchBar - component', () => {
const { reactions } = store.getState();
expect(reactions.reactions.data).toStrictEqual([]);
expect(reactions.data).toStrictEqual([]);
});
it('should open search drawer if it is not open', () => {
const { store } = renderComponent({
Loading