import React from 'react'; import Error from './error'; import AdditionalContext from './additional-context'; import Warning from './warning'; import TestSummary from './test-summary'; import ImagesContainer from './images-container'; import { makeId, LinkableHeaderH5 } from './linkable-header'; const TestsResults = props => { const { tests } = props; return tests.map((test, index) => { const id = makeId(test.title); return (
{test.title} {test.state === 'pending' ? ( Failed mocha test configured to retry. Check spec result for final test run ) : null}
); }); }; export default TestsResults;