mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:41:25 +08:00
Tests
This commit is contained in:
parent
80496a3e66
commit
98c7c573d6
@ -7,19 +7,6 @@ jest.useFakeTimers();
|
||||
describe('initial state', () => {
|
||||
const viewMode = 'story';
|
||||
|
||||
it('redirects to /story/* if path is blank', () => {
|
||||
const navigate = jest.fn();
|
||||
const location = { search: null };
|
||||
const {
|
||||
state: { layout },
|
||||
} = initURL({ navigate, state: { location, viewMode } });
|
||||
|
||||
// Nothing unexpected in layout
|
||||
expect(layout).toEqual({});
|
||||
jest.runAllTimers();
|
||||
expect(navigate).toHaveBeenCalledWith('/story/*', { replace: true });
|
||||
});
|
||||
|
||||
describe('config query parameters', () => {
|
||||
it('handles full parameter', () => {
|
||||
const navigate = jest.fn();
|
||||
@ -88,23 +75,29 @@ describe('initial state', () => {
|
||||
addonPanel: 'storybook%2Factions%2Factions-panel',
|
||||
};
|
||||
|
||||
it('handles defaults and routes to story', () => {
|
||||
const navigate = jest.fn();
|
||||
it('sets sensible storyId for selectedKind/Story', () => {
|
||||
const location = { search: qs.stringify(defaultLegacyParameters) };
|
||||
const {
|
||||
state: { layout, selectedPanel },
|
||||
} = initURL({ navigate, state: { location, viewMode } });
|
||||
state: { layout, selectedPanel, storyId },
|
||||
} = initURL({ state: { location, viewMode } });
|
||||
|
||||
// Nothing unexpected in layout
|
||||
expect(layout).toEqual({});
|
||||
// TODO: at the very least this should be unescaped
|
||||
expect(selectedPanel).toEqual('storybook%2Factions%2Factions-panel');
|
||||
jest.runAllTimers();
|
||||
expect(navigate).toHaveBeenCalledWith('/story/kind--story', { replace: true });
|
||||
expect(storyId).toEqual('kind--story');
|
||||
});
|
||||
|
||||
it('sets sensible storyId for selectedKind only', () => {
|
||||
const location = { search: { selectedKind: 'kind' } };
|
||||
const {
|
||||
state: { storyId },
|
||||
} = initURL({ state: { location, viewMode } });
|
||||
|
||||
expect(storyId).toEqual('kind');
|
||||
});
|
||||
|
||||
it('handles full parameter', () => {
|
||||
const navigate = jest.fn();
|
||||
const location = {
|
||||
search: qs.stringify({
|
||||
...defaultLegacyParameters,
|
||||
@ -113,13 +106,12 @@ describe('initial state', () => {
|
||||
};
|
||||
const {
|
||||
state: { layout },
|
||||
} = initURL({ navigate, state: { location } });
|
||||
} = initURL({ state: { location } });
|
||||
|
||||
expect(layout).toEqual({ isFullscreen: true });
|
||||
});
|
||||
|
||||
it('handles addons and stories parameters', () => {
|
||||
const navigate = jest.fn();
|
||||
const location = {
|
||||
search: qs.stringify({
|
||||
...defaultLegacyParameters,
|
||||
@ -129,13 +121,12 @@ describe('initial state', () => {
|
||||
};
|
||||
const {
|
||||
state: { layout },
|
||||
} = initURL({ navigate, state: { location } });
|
||||
} = initURL({ state: { location } });
|
||||
|
||||
expect(layout).toEqual({ showNav: false, showPanel: false });
|
||||
});
|
||||
|
||||
it('handles panelRight parameter', () => {
|
||||
const navigate = jest.fn();
|
||||
const location = {
|
||||
search: qs.stringify({
|
||||
...defaultLegacyParameters,
|
||||
@ -144,7 +135,7 @@ describe('initial state', () => {
|
||||
};
|
||||
const {
|
||||
state: { layout },
|
||||
} = initURL({ navigate, state: { location } });
|
||||
} = initURL({ state: { location } });
|
||||
|
||||
expect(layout).toEqual({ panelPosition: 'right' });
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user