From 53698b495a0bda86100320a1285fab37f3c9fb1e Mon Sep 17 00:00:00 2001 From: Kartikey Gupta Date: Mon, 15 Sep 2025 20:54:31 +0530 Subject: [PATCH 1/4] fix: improve footer alignment for Questions section - Remove negative margins (-ml-2, -ml-0.5) causing misalignment - Increase padding from p-4 to p-6 for better spacing - Fix typo: Question? -> Questions? - Remove unnecessary ml-0 class - Enhance visual consistency and proper alignment Signed-off-by: Kartikey Gupta --- src/components/KeployCloud.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/KeployCloud.js b/src/components/KeployCloud.js index 68b4bed1d..b0c792894 100644 --- a/src/components/KeployCloud.js +++ b/src/components/KeployCloud.js @@ -4,11 +4,11 @@ export const KeployCloud = () => { return (
-
-

Question? ๐Ÿค”๐Ÿ’ญ

-

+

+

Question? ๐Ÿค”๐Ÿ’ญ

+

For any support please{" "} Date: Tue, 16 Sep 2025 19:16:41 +0530 Subject: [PATCH 2/4] fix: correct Questions section alignment by removing negative margins Signed-off-by: Kartikey Gupta --- src/components/KeployCloud.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/KeployCloud.js b/src/components/KeployCloud.js index b0c792894..1650346c8 100644 --- a/src/components/KeployCloud.js +++ b/src/components/KeployCloud.js @@ -4,11 +4,11 @@ export const KeployCloud = () => { return (

-
-

Question? ๐Ÿค”๐Ÿ’ญ

-

+

+

Questions? ๐Ÿค”๐Ÿ’ญ

+

For any support please{" "} Date: Thu, 18 Sep 2025 17:18:30 +0530 Subject: [PATCH 3/4] docs: fix grammar issues in Testing Guide Signed-off-by: Kartikey Gupta --- .../keploy-explained/testing-guide.md | 14 +++++++------- .../keploy-explained/testing-guide.md | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/versioned_docs/version-2.0.0/keploy-explained/testing-guide.md b/versioned_docs/version-2.0.0/keploy-explained/testing-guide.md index 5452cd1a2..8f7921eed 100644 --- a/versioned_docs/version-2.0.0/keploy-explained/testing-guide.md +++ b/versioned_docs/version-2.0.0/keploy-explained/testing-guide.md @@ -1,6 +1,6 @@ --- id: testing-guide -title: testing Guide +title: Testing Guide sidebar_label: Testing Guide tags: - explanation @@ -11,9 +11,9 @@ tags: # Testing Guide ๐Ÿงช -In this blog, we will learn how test bench of keploy works and how you can contribute to keploy's code coverage. +In this blog, we will learn how the Keploy test bench works and how you can contribute to Keploy's code coverage. -## Keploy test Keploy? +## Can Keploy Test Keploy? - Keploy's test bench is built on the principle that Keploy can test itself, operating in two distinct modes: `RECORD` and `TEST`. Each mode activates different sections of the codebase, with some overlap between the two. These modes can be executed concurrently to enhance testing efficiency. @@ -59,17 +59,17 @@ curl --silent -o pilot --location "https://github.com/keploy/pilot/releases/late Note: Here `keployR` is released binary and `keployB` is built binary. The idea is that there will be two cases: -1. The latest released version of keploy will be used for recording the tests & mocks using and built version of keploy will be used for testing. +1. The latest released version of Keploy will be used for recording the tests & mocks, and the built version of Keploy will be used for testing. i.e. `keployR record -c "keployB test -c ./gin-mongo-app`. -2. The latest released version of keploy will be used for testing and built version of keploy will be used for recording tests & mocks. +2. The latest released version of Keploy will be used for testing, and the built version of Keploy will be used for recording tests & mocks. i.e. `keployB record -c "keployR test -c ./gin-mongo-app`. These two scenarios are designed to ensure the detection of changes, including any potential breaking changes or adjustments that may affect backward compatibility. ### Recording and testing of tests and mocks via test-bench -Right now, in this guide i am only showing the first scenario, to run the second scenario you just need to replace the binaries as mentioned in the **4th** step. +Right now, in this guide I am only showing the first scenario. To run the second scenario, you just need to replace the binaries as mentioned in the **4th** step. #### Recording Phase ๐ŸŽฅ @@ -143,4 +143,4 @@ If both scenarios yield a "passed" result, it signifies that this approach mirro -Hope this helps you out, if you still have any questions, reach out to us . +Hope this helps you out! If you still have any questions, reach out to us. diff --git a/versioned_docs/version-3.0.0/keploy-explained/testing-guide.md b/versioned_docs/version-3.0.0/keploy-explained/testing-guide.md index 5452cd1a2..8f7921eed 100644 --- a/versioned_docs/version-3.0.0/keploy-explained/testing-guide.md +++ b/versioned_docs/version-3.0.0/keploy-explained/testing-guide.md @@ -1,6 +1,6 @@ --- id: testing-guide -title: testing Guide +title: Testing Guide sidebar_label: Testing Guide tags: - explanation @@ -11,9 +11,9 @@ tags: # Testing Guide ๐Ÿงช -In this blog, we will learn how test bench of keploy works and how you can contribute to keploy's code coverage. +In this blog, we will learn how the Keploy test bench works and how you can contribute to Keploy's code coverage. -## Keploy test Keploy? +## Can Keploy Test Keploy? - Keploy's test bench is built on the principle that Keploy can test itself, operating in two distinct modes: `RECORD` and `TEST`. Each mode activates different sections of the codebase, with some overlap between the two. These modes can be executed concurrently to enhance testing efficiency. @@ -59,17 +59,17 @@ curl --silent -o pilot --location "https://github.com/keploy/pilot/releases/late Note: Here `keployR` is released binary and `keployB` is built binary. The idea is that there will be two cases: -1. The latest released version of keploy will be used for recording the tests & mocks using and built version of keploy will be used for testing. +1. The latest released version of Keploy will be used for recording the tests & mocks, and the built version of Keploy will be used for testing. i.e. `keployR record -c "keployB test -c ./gin-mongo-app`. -2. The latest released version of keploy will be used for testing and built version of keploy will be used for recording tests & mocks. +2. The latest released version of Keploy will be used for testing, and the built version of Keploy will be used for recording tests & mocks. i.e. `keployB record -c "keployR test -c ./gin-mongo-app`. These two scenarios are designed to ensure the detection of changes, including any potential breaking changes or adjustments that may affect backward compatibility. ### Recording and testing of tests and mocks via test-bench -Right now, in this guide i am only showing the first scenario, to run the second scenario you just need to replace the binaries as mentioned in the **4th** step. +Right now, in this guide I am only showing the first scenario. To run the second scenario, you just need to replace the binaries as mentioned in the **4th** step. #### Recording Phase ๐ŸŽฅ @@ -143,4 +143,4 @@ If both scenarios yield a "passed" result, it signifies that this approach mirro -Hope this helps you out, if you still have any questions, reach out to us . +Hope this helps you out! If you still have any questions, reach out to us. From de4a7a975ee78fb84d7aeb464fee296992937bf3 Mon Sep 17 00:00:00 2001 From: Kartikey Gupta Date: Wed, 24 Sep 2025 17:25:31 +0530 Subject: [PATCH 4/4] Fix typo in testing guide introduction Signed-off-by: Kartikey Gupta --- versioned_docs/version-2.0.0/keploy-explained/testing-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versioned_docs/version-2.0.0/keploy-explained/testing-guide.md b/versioned_docs/version-2.0.0/keploy-explained/testing-guide.md index 8f7921eed..95b0a9014 100644 --- a/versioned_docs/version-2.0.0/keploy-explained/testing-guide.md +++ b/versioned_docs/version-2.0.0/keploy-explained/testing-guide.md @@ -11,7 +11,7 @@ tags: # Testing Guide ๐Ÿงช -In this blog, we will learn how the Keploy test bench works and how you can contribute to Keploy's code coverage. +In this guide, we will learn how the Keploy test bench works and how you can contribute to Keploy's code coverage. ## Can Keploy Test Keploy?