mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 10:21:07 +08:00
fix tests
This commit is contained in:
parent
5406ce2f36
commit
007a7d1d2f
@ -205,7 +205,7 @@ describe('initModule', () => {
|
||||
|
||||
fullAPI.emit(SET_CURRENT_STORY);
|
||||
expect(navigate).toHaveBeenCalledWith(
|
||||
'/?path=/story/test--story&args=b:2',
|
||||
'/story/test--story&args=b:2',
|
||||
expect.objectContaining({ replace: true })
|
||||
);
|
||||
expect(store.getState().customQueryParams).toEqual({ args: 'b:2' });
|
||||
@ -222,7 +222,7 @@ describe('initModule', () => {
|
||||
|
||||
fullAPI.emit(GLOBALS_UPDATED, { globals: { a: 2 }, initialGlobals: { a: 1, b: 1 } });
|
||||
expect(navigate).toHaveBeenCalledWith(
|
||||
'/?path=/story/test--story&globals=a:2;b:!undefined',
|
||||
'/story/test--story&globals=a:2;b:!undefined',
|
||||
expect.objectContaining({ replace: true })
|
||||
);
|
||||
expect(store.getState().customQueryParams).toEqual({ globals: 'a:2;b:!undefined' });
|
||||
@ -240,13 +240,13 @@ describe('initModule', () => {
|
||||
|
||||
fullAPI.emit(GLOBALS_UPDATED, { globals: { g: 2 } });
|
||||
expect(navigate).toHaveBeenCalledWith(
|
||||
'/?path=/story/test--story&full=1&globals=g:2',
|
||||
'/story/test--story&full=1&globals=g:2',
|
||||
expect.objectContaining({ replace: true })
|
||||
);
|
||||
|
||||
fullAPI.emit(SET_CURRENT_STORY);
|
||||
expect(navigate).toHaveBeenCalledWith(
|
||||
'/?path=/story/test--story&args=a:1&full=1&globals=g:2',
|
||||
'/story/test--story&args=a:1&full=1&globals=g:2',
|
||||
expect.objectContaining({ replace: true })
|
||||
);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user