aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui/output_spec.lua
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2016-08-09 17:01:56 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2016-08-14 21:53:02 +0200
commitf332eba16c290c729b21171ed83b1e3377ee17ec (patch)
tree8b23785f0858fabdc9fcb87bff80d8bb80955514 /test/functional/ui/output_spec.lua
parent4de10d43aa735460eef0e5786a868a1be9431298 (diff)
downloadrneovim-f332eba16c290c729b21171ed83b1e3377ee17ec.tar.gz
rneovim-f332eba16c290c729b21171ed83b1e3377ee17ec.tar.bz2
rneovim-f332eba16c290c729b21171ed83b1e3377ee17ec.zip
tests: don't ignore highlights in terminal tests
Diffstat (limited to 'test/functional/ui/output_spec.lua')
-rw-r--r--test/functional/ui/output_spec.lua22
1 files changed, 11 insertions, 11 deletions
diff --git a/test/functional/ui/output_spec.lua b/test/functional/ui/output_spec.lua
index c7c8986527..22ffc156ef 100644
--- a/test/functional/ui/output_spec.lua
+++ b/test/functional/ui/output_spec.lua
@@ -9,12 +9,12 @@ describe("shell command :!", function()
'", "-u", "NONE", "-i", "NONE", "--cmd", "set noswapfile"]')
screen:expect([[
{1: } |
- ~ |
- ~ |
- ~ |
- [No Name] |
+ {4:~ }|
+ {4:~ }|
+ {4:~ }|
+ {5:[No Name] }|
|
- -- TERMINAL -- |
+ {3:-- TERMINAL --} |
]])
end)
@@ -27,13 +27,13 @@ describe("shell command :!", function()
-- to avoid triggering a UI flush.
child_session.feed_data(":!printf foo; sleep 200\n")
screen:expect([[
- ~ |
- ~ |
- [No Name] |
- :!printf foo; sleep 200 |
+ {1: } |
+ {4:~ }|
+ {4:~ }|
+ {4:~ }|
+ {5:[No Name] }|
|
- foo |
- -- TERMINAL -- |
+ {3:-- TERMINAL --} |
]])
end)
end)