Skip to content

Commit fbca4ee

Browse files
committed
Report that single skipped test was skipped
1 parent 96f39a2 commit fbca4ee

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

autoload/OmniSharp/actions/test.vim

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ function! s:CBRunTest(summary) abort
2222
if a:summary.pass
2323
if len(a:summary.locations) == 0
2424
echomsg 'No tests were run'
25+
elseif a:summary.locations[0].type ==# 'W'
26+
echohl WarningMsg
27+
echomsg a:summary.locations[0].name . ': skipped'
28+
echohl None
2529
else
2630
echohl Title
2731
echomsg a:summary.locations[0].name . ': passed'

0 commit comments

Comments
 (0)