fix tests

This commit is contained in:
Norbert de Langen 2021-10-21 18:00:55 +02:00
parent 5406ce2f36
commit 007a7d1d2f
No known key found for this signature in database
GPG Key ID: E49F18EF96C393F2

View File

@ -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 })
);
});