Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: refactor typescript-sdk #105

Merged
merged 10 commits into from
Mar 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,24 @@ Keploy simplifies the testing process by seamlessly generating end-to-end test c
}, timeOut);
}, timeOut);
```
3. **Test**
3. **RunOptions**

```bash
options {
delay: number; // delay for the application ro run
debug: boolean; // enable or disable debug flag
port: number; // port of keploy you want to run
path: string; // path of the keploy tests and mocks
}
```

4. **Test**
Execute
```bash
keploy test -c "npm test" --delay 10 --coverage
```

4. **Get Combined coverage**
5. **Get Combined coverage**
Execute
```bash
keploy test -c "npm run coverage" --delay 10 --coverage
Expand Down
Loading
Loading