mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
Finalize
This commit is contained in:
parent
82b4e270ab
commit
e7f83454fc
@ -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: [
|
||||
|
@ -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"`
|
||||
);
|
||||
});
|
||||
|
@ -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}`));
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
|
@ -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}`;
|
||||
|
Loading…
x
Reference in New Issue
Block a user