mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Fix test
This commit is contained in:
parent
b36d6ac473
commit
05284d996e
@ -164,8 +164,7 @@ export const init: ModuleFn = ({ store, navigate, state, provider, fullAPI, ...r
|
||||
return acc;
|
||||
}, queryParams),
|
||||
};
|
||||
const equal = deepEqual(customQueryParams, update);
|
||||
if (!equal) {
|
||||
if (!deepEqual(customQueryParams, update)) {
|
||||
store.setState({ customQueryParams: update });
|
||||
fullAPI.emit(UPDATE_QUERY_PARAMS, update);
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
import qs from 'qs';
|
||||
|
||||
import { SET_CURRENT_STORY, GLOBALS_UPDATED } from '@storybook/core-events';
|
||||
import { SET_CURRENT_STORY, GLOBALS_UPDATED, UPDATE_QUERY_PARAMS } from '@storybook/core-events';
|
||||
|
||||
import { init as initURL } from '../modules/url';
|
||||
|
||||
@ -147,11 +147,18 @@ describe('queryParams', () => {
|
||||
},
|
||||
getState: () => state,
|
||||
};
|
||||
const { api } = initURL({ state: { location: { search: '' } }, navigate: jest.fn(), store });
|
||||
const fullAPI = { emit: jest.fn() };
|
||||
const { api } = initURL({
|
||||
state: { location: { search: '' } },
|
||||
navigate: jest.fn(),
|
||||
store,
|
||||
fullAPI,
|
||||
});
|
||||
|
||||
api.setQueryParams({ foo: 'bar' });
|
||||
|
||||
expect(api.getQueryParam('foo')).toEqual('bar');
|
||||
expect(fullAPI.emit).toHaveBeenCalledWith(UPDATE_QUERY_PARAMS, { foo: 'bar' });
|
||||
});
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user