You can find the docs here: https://docs.testkube.io
System requirements:
If you're editing the docs, follow this workflow:
- Install dependencies with
npm install
- Spin up local development with
npm run start
- Update the docs inside the
/docs
folder - Make sure to add the new document in the
sidebar.json
file:
{
type: "category",
label: "Concepts",
items: [
{
type: "category",
label: "Tests",
items: [
"concepts/tests/tests-creating",
"concepts/tests/tests-running",
"concepts/tests/tests-getting-results",
"concepts/tests/tests-variables",
+ "concepts/new-concept"
],
},
}
- You can preview the changes locally in your browser: http://localhost:3000
If you want to add a warning/info message like the below, use Docusuarus Admonitions.
If the content of the code blocks refers to a file, use Docusaurus Code Block title.
Don't:
file.js
```js
file
content
```
Do:
```js title="file.js"
file
content
```