Subscribe to the correct event

This commit is contained in:
Michael Shilman 2019-02-18 18:43:09 +08:00
parent a6fcf4126b
commit 0957242c3f

View File

@ -1,6 +1,7 @@
import addons from '@storybook/addons';
import deprecate from 'util-deprecate';
import { normalize } from 'upath';
import { ADD_TESTS } from './shared';
const findTestResults = (testFiles, jestTestResults, jestTestFilesExt) =>
Object.values(testFiles).map(name => {
@ -22,7 +23,7 @@ const findTestResults = (testFiles, jestTestResults, jestTestFilesExt) =>
});
const emitAddTests = ({ kind, story, testFiles, options }) => {
addons.getChannel().emit('storybook/tests/add_tests', {
addons.getChannel().emit(ADD_TESTS, {
kind,
storyName: story,
tests: findTestResults(testFiles, options.results, options.filesExt),