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

0.8.6 release #44

Merged
merged 1 commit into from
May 3, 2020
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 CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Change Log
Notable changes to this project will be documented in this file.

## 0.8.6
Add support for `debugPreStep` property to Karate Debug Configurations coming in Karate 0.9.6.

## 0.8.5
Open Debug Configuration picker and launch.json if not previously setup when attempting to start a debug session from `Karate: Debug` Codelens.

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "git",
"url": "https://github.com/kirksl/karate-runner"
},
"version": "0.8.5",
"version": "0.8.6",
"license": "MIT",
"author": {
"name": "Kirk Slota"
Expand Down Expand Up @@ -310,6 +310,11 @@
"type": "string",
"description": "[karateCli]\n\nThis property specifies the command to start Karate Debug Server.",
"default": "${config:karateRunner.karateJar.commandLineArgs} -d"
},
"debugPreStep": {
"type": "string",
"description": "[debugPreStep]\n\nThis property specifies the command Karate Debug Server should run before resuming execution of the debug session.\nTypically used by Karate-Robot to switch focus to the application under test.",
"default": "robot.input(Key.ALT, Key.TAB)"
}
}
}
Expand Down