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:
LiBe 2018-07-26 16:10:02 +02:00 committed by GitHub
parent 3360aef176
commit 75c1bebe0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,