2018-11-01 17:48:21 +02:00

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();
};
};