Remove needless iteration testStorySnapshots

This commit is contained in:
Mihail Bodrov 2020-08-31 01:24:42 +03:00
parent eff494db86
commit 2acf76b606

View File

@ -50,10 +50,16 @@ function testStorySnapshots(options: StoryshotsOptions = {}) {
const data = storybook
.raw()
.filter(({ name }) => (storyNameRegex ? name.match(storyNameRegex) : true))
.filter(({ kind }) => (storyKindRegex ? kind.match(storyKindRegex) : true))
.reduce(
(acc, item) => {
if (storyNameRegex && !item.name.match(storyNameRegex)) {
return acc;
}
if (storyKindRegex && !item.kind.match(storyKindRegex)) {
return acc;
}
const { kind, storyFn: render, parameters } = item;
const existing = acc.find((i: any) => i.kind === kind);
const { fileName } = item.parameters;