mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:11:07 +08:00
addons-jest : bug with the jest parameter
The jest param is not working on my machine. Array.from({0: 'zero', 1: 'one'}) does not work on my nodejs. Instead, Array.slice works pretty well.
This commit is contained in:
parent
3360aef176
commit
75c1bebe0a
@ -2,7 +2,7 @@ import addons from '@storybook/addons';
|
||||
import deprecate from 'util-deprecate';
|
||||
|
||||
const findTestResults = (testFiles, jestTestResults, jestTestFilesExt) =>
|
||||
Array.from(testFiles).map(name => {
|
||||
Array.slice({...testFiles, length: Object.keys(testFiles).length}).map(name => {
|
||||
if (jestTestResults && jestTestResults.testResults) {
|
||||
return {
|
||||
name,
|
||||
|
Loading…
x
Reference in New Issue
Block a user