Skip to content

Commit 1cbc391

Browse files
authored
chore: update README with new test commands (#477)
1 parent 61e18c4 commit 1cbc391

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ Yep! That's all :)
119119
- `JavaTestDebugCurrentClass` - Debug the test class in the active buffer
120120
- `JavaTestRunCurrentMethod` - Run the test method on the cursor
121121
- `JavaTestDebugCurrentMethod` - Debug the test method on the cursor
122+
- `JavaTestRunAllTests` - Run all tests in the workspace
123+
- `JavaTestDebugAllTests` - Debug all tests in the workspace
122124
- `JavaTestViewLastReport` - Open the last test report in a popup window
123125

124126
### Profiles
@@ -219,6 +221,18 @@ require('java').test.run_current_method()
219221
require('java').test.debug_current_method()
220222
```
221223

224+
- `run_all_tests` - Run all tests in the workspace
225+
226+
```lua
227+
require('java').test.run_all_tests()
228+
```
229+
230+
- `debug_all_tests` - Debug all tests in the workspace
231+
232+
```lua
233+
require('java').test.debug_all_tests()
234+
```
235+
222236
- `view_report` - Open the last test report in a popup window
223237

224238
```lua

0 commit comments

Comments
 (0)