@@ -3,6 +3,11 @@ import Tabs from "@theme/Tabs";
33import TabItem from "@theme/TabItem" ;
44import CodeBlock from "@theme/CodeBlock" ;
55import Link from "@docusaurus/Link" ;
6+ // Add this line at the top of StartKeploy.js
7+ import '../css/custom.css' ;
8+
9+ // ... your other imports like import React from 'react';
10+ // ... the rest of your component code
611
712export default function StartKeploy ( ) {
813 return (
@@ -21,63 +26,63 @@ export default function StartKeploy() {
2126 < TabItem value = "go" label = "Go" >
2227 < br />
2328 < p >
24- < strong > Record the test cases</ strong >
29+ < strong > 1. Record the test cases</ strong >
2530 </ p >
26- < CodeBlock language = "bash" >
31+ < CodeBlock language = "bash" className = "my-code-block" >
2732 { `keploy record -c "go run main.go"` }
2833 </ CodeBlock >
2934 < p >
30- < strong > Run the test cases</ strong >
35+ < strong > 2. Run the test cases</ strong >
3136 </ p >
32- < CodeBlock language = "bash" >
37+ < CodeBlock language = "bash" className = "my-code-block" >
3338 { `keploy test -c "go run main.go" --delay 10` }
3439 </ CodeBlock >
3540 </ TabItem >
3641
3742 < TabItem value = "node" label = "Node.js" >
3843 < br />
3944 < p >
40- < strong > Record the test cases</ strong >
45+ < strong > 1. Record the test cases</ strong >
4146 </ p >
42- < CodeBlock language = "bash" >
47+ < CodeBlock language = "bash" className = "my-code-block" >
4348 { `keploy record -c "npm start"` }
4449 </ CodeBlock >
4550 < p >
46- < strong > Run the test cases</ strong >
51+ < strong > 2. Run the test cases</ strong >
4752 </ p >
48- < CodeBlock language = "bash" >
53+ < CodeBlock language = "bash" className = "my-code-block" >
4954 { `keploy test -c "npm start" --delay 10` }
5055 </ CodeBlock >
5156 </ TabItem >
5257
5358 < TabItem value = "java" label = "Java" >
5459 < br />
5560 < p >
56- < strong > Record the test cases</ strong >
61+ < strong > 1. Record the test cases</ strong >
5762 </ p >
58- < CodeBlock language = "bash" >
63+ < CodeBlock language = "bash" className = "my-code-block" >
5964 { `keploy record -c "mvn spring-boot:run"` }
6065 </ CodeBlock >
6166 < p >
62- < strong > Run the test cases</ strong >
67+ < strong > 2. Run the test cases</ strong >
6368 </ p >
64- < CodeBlock language = "bash" >
69+ < CodeBlock language = "bash" className = "my-code-block" >
6570 { `keploy test -c "mvn spring-boot:run" --delay 10` }
6671 </ CodeBlock >
6772 </ TabItem >
6873
6974 < TabItem value = "python" label = "Python" >
7075 < br />
7176 < p >
72- < strong > Record the test cases</ strong >
77+ < strong > 1. Record the test cases</ strong >
7378 </ p >
74- < CodeBlock language = "bash" >
79+ < CodeBlock language = "bash" className = "my-code-block" >
7580 { `keploy record -c "python app.py"` }
7681 </ CodeBlock >
7782 < p >
78- < strong > Run the test cases</ strong >
83+ < strong > 2. Run the test cases</ strong >
7984 </ p >
80- < CodeBlock language = "bash" >
85+ < CodeBlock language = "bash" className = "my-code-block" >
8186 { `keploy test -c "python app.py" --delay 10` }
8287 </ CodeBlock >
8388 </ TabItem >
0 commit comments