mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
61 lines
1.7 KiB
JavaScript
61 lines
1.7 KiB
JavaScript
import addons from '@storybook/addons';
|
|
import deprecate from 'util-deprecate';
|
|
import { normalize } from 'upath';
|
|
|
|
const findTestResults = (testFiles, jestTestResults, jestTestFilesExt) =>
|
|
Object.values(testFiles).map(name => {
|
|
const fileName = `${name}${jestTestFilesExt}`;
|
|
|
|
if (jestTestResults && jestTestResults.testResults) {
|
|
const fileNamePattern = new RegExp(fileName);
|
|
|
|
return {
|
|
fileName,
|
|
name,
|
|
result: jestTestResults.testResults.find(test =>
|
|
normalize(test.name).match(fileNamePattern)
|
|
),
|
|
};
|
|
}
|
|
|
|
return { fileName, name };
|
|
});
|
|
|
|
const emitAddTests = ({ kind, story, testFiles, options }) => {
|
|
addons.getChannel().emit('storybook/tests/add_tests', {
|
|
kind,
|
|
storyName: story,
|
|
tests: findTestResults(testFiles, options.results, options.filesExt),
|
|
});
|
|
};
|
|
|
|
export const withTests = userOptions => {
|
|
const defaultOptions = {
|
|
filesExt: '((\\.specs?)|(\\.tests?))?(\\.js)?$',
|
|
};
|
|
const options = Object.assign({}, defaultOptions, userOptions);
|
|
|
|
return (...args) => {
|
|
if (typeof args[0] === 'string') {
|
|
return deprecate((story, { kind }) => {
|
|
emitAddTests({ kind, story, testFiles: args, options });
|
|
|
|
return story();
|
|
}, 'Passing component filenames to the `@storybook/addon-jest` via `withTests` is deprecated. Instead, use the `jest` story parameter');
|
|
}
|
|
|
|
const [story, { kind, parameters = {} }] = args;
|
|
let { jest: testFiles } = parameters;
|
|
|
|
if (typeof testFiles === 'string') {
|
|
testFiles = [testFiles];
|
|
}
|
|
|
|
if (testFiles && !testFiles.disable) {
|
|
emitAddTests({ kind, story, testFiles, options });
|
|
}
|
|
|
|
return story();
|
|
};
|
|
};
|