diff options
-rw-r--r-- | packages/dev-tools-pages/ts/pages/Cov.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/dev-tools-pages/ts/pages/Cov.tsx b/packages/dev-tools-pages/ts/pages/Cov.tsx index a0acfb869..b7405f8f9 100644 --- a/packages/dev-tools-pages/ts/pages/Cov.tsx +++ b/packages/dev-tools-pages/ts/pages/Cov.tsx @@ -9,11 +9,19 @@ import { Tabs, TabBlock } from 'ts/components/Tabs'; import Code from 'ts/components/Code'; import InlineCode from 'ts/components/InlineCode'; import List from 'ts/components/List'; +import Intro from 'ts/components/Intro'; function Cov(props: any) { return ( <Base context={context}> <Container> + <Intro title="Measure your tests"> + <p> + When it comes to writing smart contracts, testing is one of the most important steps of the + process. In order to quantify the robustness of your Solidity testing suite, you need to measure + its code coverage. + </p> + </Intro> <Main> <ContentBlock title="Required steps"> <List items={['Step 1', 'Step 2']} /> |