Norbert de Langen c2bbe43d02
stage0
2022-07-21 11:24:07 +02:00

11 lines
300 B
JavaScript

import { withTests as wt } from '@storybook/addon-jest';
import results from './addon-jest.testresults.json';
export default {
title: 'Addons/Jest',
decorators: [wt({ results })],
};
export const WithTests = () => 'This story shows test results';
WithTests.parameters = { jest: 'addon-jest' };