diff --git a/code/jest.config.js b/code/jest.config.js index e74ed2863fd..9c61502d892 100644 --- a/code/jest.config.js +++ b/code/jest.config.js @@ -1,5 +1,13 @@ const os = require('os'); +// TODO Revisit this test later, when we have a windows machine @valentinpalkovic +const skipOnWindows = [ + 'lib/core-server/src/utils/__tests__/server-statics.test.ts', + 'lib/core-common/src/utils/__tests__/template.test.ts', + 'addons/storyshots/storyshots-core/src/frameworks/configure.test.ts', + 'lib/core-common/src/utils/__tests__/interpret-files.test.ts', +]; + module.exports = { cacheDirectory: '.cache/jest', clearMocks: true, @@ -51,6 +59,7 @@ module.exports = { '/renderers/svelte/src/public-types.test.ts', '/renderers/vue/src/public-types.test.ts', '/renderers/vue3/src/public-types.test.ts', + ...(process.platform === 'win32' ? skipOnWindows : []), ], collectCoverage: false, collectCoverageFrom: [ diff --git a/code/lib/builder-manager/src/utils/files.test.ts b/code/lib/builder-manager/src/utils/files.test.ts index a82d848ac63..c504238c060 100644 --- a/code/lib/builder-manager/src/utils/files.test.ts +++ b/code/lib/builder-manager/src/utils/files.test.ts @@ -2,43 +2,28 @@ import { platform } from 'os'; import { sanitizePath } from './files'; const os = platform(); +const isWindows = os === 'win32'; -if (os !== 'win32') { - test('sanitizePath', () => { - const addonsDir = '/Users/username/Projects/projectname/storybook'; - const text = 'demo text'; - const file = { - path: '/Users/username/Projects/projectname/storybook/node_modules/@storybook/addon-x+y/dist/manager.mjs', - contents: Uint8Array.from(Array.from(text).map((letter) => letter.charCodeAt(0))), - text, - }; - const { location, url } = sanitizePath(file, addonsDir); +test('sanitizePath', () => { + const addonsDir = isWindows + ? 'C:\\Users\\username\\Projects\\projectname\\storybook' + : '/Users/username/Projects/projectname/storybook'; + const text = 'demo text'; + const file = { + path: isWindows + ? 'C:\\Users\\username\\Projects\\projectname\\storybook\\node_modules\\@storybook\\addon-x+y\\dist\\manager.mjs' + : '/Users/username/Projects/projectname/storybook/node_modules/@storybook/addon-x+y/dist/manager.mjs', + contents: Uint8Array.from(Array.from(text).map((letter) => letter.charCodeAt(0))), + text, + }; + const { location, url } = sanitizePath(file, addonsDir); - expect(location).toMatchInlineSnapshot( - `"/Users/username/Projects/projectname/storybook/node_modules/@storybook/addon-x+y/dist/manager.mjs"` - ); - expect(url).toMatchInlineSnapshot( - `"./sb-addons/node_modules/%40storybook/addon-x%2By/dist/manager.mjs"` - ); - }); -} - -if (os === 'win32') { - test('sanitizePath - 1', () => { - const addonsDir = 'C:\\Users\\username\\Projects\\projectname\\storybook'; - const text = 'demo text'; - const file = { - path: 'C:\\Users\\username\\Projects\\projectname\\storybook\\node_modules\\@storybook\\addon-x+y\\dist\\manager.mjs', - contents: Uint8Array.from(Array.from(text).map((letter) => letter.charCodeAt(0))), - text, - }; - const { location, url } = sanitizePath(file, addonsDir); - - expect(location).toMatchInlineSnapshot( - `"C:\\\\Users\\\\username\\\\Projects\\\\projectname\\\\storybook\\\\node_modules\\\\@storybook\\\\addon-x+y\\\\dist\\\\manager.mjs"` - ); - expect(url).toMatchInlineSnapshot( - `"./sb-addons/node_modules/%40storybook/addon-x%2By/dist/manager.mjs"` - ); - }); -} + expect(location).toMatchInlineSnapshot( + isWindows + ? `"C:\\\\Users\\\\username\\\\Projects\\\\projectname\\\\storybook\\\\node_modules\\\\@storybook\\\\addon-x+y\\\\dist\\\\manager.mjs"` + : `"/Users/username/Projects/projectname/storybook/node_modules/@storybook/addon-x+y/dist/manager.mjs"` + ); + expect(url).toMatchInlineSnapshot( + `"./sb-addons/node_modules/%40storybook/addon-x%2By/dist/manager.mjs"` + ); +}); diff --git a/code/lib/core-client/src/PreviewWeb.mockdata.ts b/code/lib/core-client/src/PreviewWeb.mockdata.ts index e176aecc069..4bcd742107e 100644 --- a/code/lib/core-client/src/PreviewWeb.mockdata.ts +++ b/code/lib/core-client/src/PreviewWeb.mockdata.ts @@ -173,9 +173,9 @@ export const waitForEvents = ( events.forEach((event) => mockChannel.on(event, listener)); // Don't wait too long - waitForQuiescence().then(() => - reject(new Error(`Event was not emitted in time: ${debugLabel || events}`)) - ); + waitForQuiescence().then(() => { + reject(new Error(`Event was not emitted in time: ${debugLabel || events}`)); + }); }); }; diff --git a/code/lib/core-server/src/utils/server-statics.ts b/code/lib/core-server/src/utils/server-statics.ts index 55d72d14e43..99b135ad9e6 100644 --- a/code/lib/core-server/src/utils/server-statics.ts +++ b/code/lib/core-server/src/utils/server-statics.ts @@ -73,7 +73,7 @@ export const parseStaticDir = async (arg: string) => { const splitIndex = lastColonIndex !== -1 && !isWindowsRawDirOnly ? lastColonIndex : arg.length; const targetRaw = arg.substring(splitIndex + 1) || '/'; - const target = targetRaw.split(path.win32.sep).join(path.posix.sep); // Ensure target has forward-slash path + const target = targetRaw.split(path.sep).join(path.posix.sep); // Ensure target has forward-slash path const rawDir = arg.substring(0, splitIndex); const staticDir = path.isAbsolute(rawDir) ? rawDir : `./${rawDir}`;