mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:01:08 +08:00
Try to fix broken test
This commit is contained in:
parent
0e45e82f44
commit
3e20d80b4d
@ -41,6 +41,16 @@ jest.mock('@storybook/manager-webpack4', () => {
|
||||
return actualBuilder;
|
||||
});
|
||||
|
||||
// we're not in the right directory for auto-title to work, so just
|
||||
// stub it out
|
||||
jest.mock('@storybook/store', () => {
|
||||
const actualStore = jest.requireActual('@storybook/store');
|
||||
return {
|
||||
...actualStore,
|
||||
autoTitle: () => 'auto-title',
|
||||
};
|
||||
});
|
||||
|
||||
jest.mock('cpy', () => () => Promise.resolve());
|
||||
jest.mock('http', () => ({
|
||||
...jest.requireActual('http'),
|
||||
|
Loading…
x
Reference in New Issue
Block a user