-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: change intro page keploy and it's features (#211)
Signed-off-by: Neha Gupta <[email protected]>
- Loading branch information
Showing
4 changed files
with
68 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
--- | ||
id: what-is-keploy | ||
title: What is Keploy? | ||
sidebar_label: What is Keploy? | ||
description: Keploy is e2e testing toolkit for developers that generates tests from API calls. | ||
sidebar_label: Introduction to Keploy | ||
description: Keploy is open source backend testing toolkit that creates tests and mocks faster than unit tests, from user-traffic. | ||
tags: | ||
- explanation | ||
- introduction | ||
- features | ||
- what is keploy | ||
keywords: | ||
- Junit | ||
- PyTest | ||
- GoTest | ||
- Jest | ||
- Backend Testing | ||
- Open Source | ||
- API Tests | ||
- AI Generated Tests | ||
--- | ||
|
||
Keploy is functional testing toolkit for developers. | ||
It **generates E2E tests for APIs (KTests)** along with **mocks or stubs(KMocks)** by | ||
recording real API calls. | ||
Keploy creates backend **API tests with built-in-mocks** or stubs **by recording your application network | ||
calls** making your testing process not only faster than unit tests but also incredibly efficient. | ||
|
||
KTests can be imported as mocks for consumers and vice-versa. | ||
|
||
![Test Case Generation](/gif/record-tc.gif) | ||
|
||
Merge KTests with unit testing libraries(like Go-Test, JUnit..) to **track combined test-coverage**. | ||
|
||
KMocks can also be referenced in existing tests or use anywhere (including any testing framework). | ||
KMocks can also be used as tests for the server. | ||
<img src="/gif/record-tc.gif" alt="Test Case Generator" width="80%" height="150" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
--- | ||
id: introduction | ||
title: Introduction to Keploy | ||
title: "What is Keploy?" | ||
sidebar_label: Introduction | ||
--- | ||
|
||
import WhatIsKeploy from '../concepts/what-is-keploy.md' | ||
|
||
<WhatIsKeploy/> | ||
|
||
## Keploy Features | ||
|
||
import WhatAreKeployFeatures from '../concepts/what-are-keploy-features.md' | ||
|
||
<WhatAreKeployFeatures/> |