skip more tests on windows for now

This commit is contained in:
Kasper Peulen 2022-11-04 16:43:03 +01:00
parent 62cdc32919
commit fb95386ae4
2 changed files with 2 additions and 0 deletions

View File

@ -61,6 +61,7 @@ const options = {
docs: { enabled: true, defaultName: 'docs', docsPage: false },
};
// TODO Revisit this test later, when we have a windows machine @valentinpalkovic
(process.platform === 'win32' ? describe.skip : describe)('StoryIndexGenerator', () => {
beforeEach(() => {
const actual = jest.requireActual('@storybook/csf-tools');

View File

@ -68,6 +68,7 @@ const getInitializedStoryIndexGenerator = async (
return generator;
};
// TODO Revisit this test later, when we have a windows machine @valentinpalkovic
(process.platform === 'win32' ? describe.skip : describe)('useStoriesJson', () => {
const use = jest.fn();
const router: Router = { use } as any;