https://github.com/znsio/kendo
https://github.com/znsio/kendo
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/znsio/kendo
- Owner: znsio
- License: mit
- Created: 2024-04-23T13:11:53.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-07T09:09:39.000Z (about 1 year ago)
- Last Synced: 2025-06-07T10:19:38.727Z (about 1 year ago)
- Language: Java
- Size: 144 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kendo
This project provides the ability to easily run API and API workflow tests using Karate.
The sample tests under `./src/test` use `kendo` to manage the test setup, execution and reporting in a standard way.
Results are published in junit, html and cucumber-reporting format. Results are also published to [ReportPortal](./docs/ReportPortal.md)
## Running the tests
### Running the tests with gradle command
There are multiple ways to run the tests under `./src/test` folder
Example
TARGET_ENVIRONMENT=prod TEST_TYPE=workflow ./gradlew clean test
## Build the uber jar
- Build an uber jar:
`./gradlew build`
- The above command will create a jar in the upload folder with the name like: `upload/kendo-0.0.1.jar`
### Running the tests with a shell script:
cd upload
PARALLEL=3 TARGET_ENVIRONMENT=prod TEST_TYPE=workflow ./runAPIWorkflowTests.sh
### Running the tests with the uber jar:
cd upload
PARALLEL=3 TARGET_ENVIRONMENT=prod TEST_TYPE=workflow java -jar kendo-0.0.1.jar
## [Configuration parameters](./docs/ConfigurationParameters.md)
## [Project specific customisations](./docs/ProjectSpecificCustomizations.md)
## [ReportPortal](./docs/ReportPortal.md)
## [Setting up the Hard Gate](./docs/HardGate.md)
## [Machine setup](./docs/MachineSetup.md)
## Guidelines
Read the [CODING GUIDLINES FOR AUTOMATION USING KARATE](docs/READMEGuideline.md) for writing tests in this framework
# Contact
Contact [@BagmarAnand](https://twitter.com/BagmarAnand) for help / information / feedback on this repo