Merge pull request #2688 from vim-airline/fix-test

chore: update test
This commit is contained in:
IK 2024-09-11 02:39:31 +09:00 committed by GitHub
commit 81eca99486
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,7 +4,8 @@ Describe themes.vim
highlight clear Normal
End
It should extract correct colors
It should extract correct colors with No termguicolors
if !exists("+termguicolors")
call airline#highlighter#reset_hlcache()
highlight Foo ctermfg=1 ctermbg=2
let colors = airline#themes#get_highlight('Foo')
@ -12,6 +13,7 @@ Describe themes.vim
Assert Equals(colors[1], 'NONE')
Assert Equals(colors[2], '1')
Assert Equals(colors[3], '2')
endif
End
if exists("+termguicolors")