Vim plugin to run bazel tests in vimux.
- RunAllBazelTests - runs all tests (
bazel test //...
) - RunTargetBazelTests - runs all tests in the current target (e.g.
bazel test //mytarget:all
)
You can map these commands to leader keystrokes if you like:
map <silent> <LocalLeader>ba :wa<CR> :RunAllBazelTests<CR>
map <silent> <LocalLeader>bt :wa<CR> :RunTargetBazelTests<CR>