Skip to content
Merged
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
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ Yep! That's all :)
- `JavaTestDebugCurrentClass` - Debug the test class in the active buffer
- `JavaTestRunCurrentMethod` - Run the test method on the cursor
- `JavaTestDebugCurrentMethod` - Debug the test method on the cursor
- `JavaTestRunAllTests` - Run all tests in the workspace
- `JavaTestDebugAllTests` - Debug all tests in the workspace
- `JavaTestViewLastReport` - Open the last test report in a popup window

### Profiles
Expand Down Expand Up @@ -219,6 +221,18 @@ require('java').test.run_current_method()
require('java').test.debug_current_method()
```

- `run_all_tests` - Run all tests in the workspace

```lua
require('java').test.run_all_tests()
```

- `debug_all_tests` - Debug all tests in the workspace

```lua
require('java').test.debug_all_tests()
```

- `view_report` - Open the last test report in a popup window

```lua
Expand Down