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

feature(documentation-website): document creation from curl #994

Merged
merged 2 commits into from
May 6, 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
3 changes: 3 additions & 0 deletions documentation-website/language/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,9 @@ command:
iabgfh:
description: "generates test skeletons from an HAR document for a project in the current working directory"
arg_1: "Argument 1: path to the HAR document"
iabgfc:
description: "generates a test skeleton from an CURL command for a project in the current working directory"
arg_1: "Argument 1: URL to test"
iabcrd:
description: "checks all routes for possible issues, so there are no surprises, when actually running the code."
arg_1: "Argument 1: language(default: en)"
Expand Down
5 changes: 5 additions & 0 deletions documentation-website/src/pages/usage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ const Usage = () => <Layout
name={'generate-benchmark-from-har'}
cli={true}
>1</Command>
<Command
shortname={'iabgfc'}
name={'generate-benchmark-from-curl'}
cli={true}
>1</Command>
<Command
shortname={'iabcrd'}
name={'check-route-definitions'}
Expand Down
Loading