Skip to content
This repository was archived by the owner on Jul 14, 2026. It is now read-only.
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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ node_modules/
.idea
octomind.config.json
octomind-cli-debug/
openapi.yaml
vhs/

5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ This way even entityIds like environmentIds or testCaseIds will be autocompleted

# octomind

Octomind cli tool. Version: 1.3.1. Additional documentation see https://octomind.dev/docs/api-reference/
Octomind cli tool. Version: 1.3.4. Additional documentation see https://octomind.dev/docs/api-reference/

**Usage:** `octomind [options] [command]`

Expand Down Expand Up @@ -218,6 +218,9 @@ Execute test cases to create a test report
| `-d, --description [text]` | Test description | No | |
| `-g, --tags [tags]` | comma separated list of tags | No | |
| `-v, --variables-to-overwrite [variables]` | JSON object of variables to overwrite | No | |
| `-b, --browser [type]` | Browser type [CHROMIUM, FIREFOX, SAFARI] | No | CHROMIUM |
| `-r, --breakpoint [name]` | Breakpoint [DESKTOP, MOBILE, TABLET] | No | DESKTOP |
| `-p, --private-location [name]` | Private location name | No | |

## create-discovery

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@octomind/octomind",
"version": "1.3.3",
"version": "1.4.1",
"description": "a command line client for octomind apis",
"main": "./dist/index.js",
"packageManager": "pnpm@10.13.1",
Expand All @@ -9,7 +9,7 @@
"node": ">=20.0.0"
},
"bin": {
"octomind": "./dist/index.js"
"octomind": "dist/index.js"
},
"scripts": {
"gendoc": "tsx scripts/generate-docs.ts > README.md",
Expand Down
10 changes: 10 additions & 0 deletions src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,16 @@ export const buildCmd = (): CompletableCommand => {
"JSON object of variables to overwrite",
toJSON,
)
.option(
"-b, --browser [type]",
"Browser type [CHROMIUM, FIREFOX, SAFARI]",
"CHROMIUM",
)
.option(
"-r, --breakpoint [name]",
"Breakpoint [DESKTOP, MOBILE, TABLET]",
"DESKTOP",
)
.action(addTestTargetWrapper(executeTests));

createCommandWithCommonOptions(program, "test-report")
Expand Down
2 changes: 2 additions & 0 deletions src/tools/test-reports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ export const executeTests = async (
environmentName: options.environmentName,
tags: options.tags,
variablesToOverwrite: options.variablesToOverwrite,
browser: options.browser,
breakpoint: options.breakpoint,
},
});

Expand Down