Try to fix broken test

This commit is contained in:
Michael Shilman 2021-09-18 14:53:19 +08:00
parent 0e45e82f44
commit 3e20d80b4d

View File

@ -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'),