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 (