aboutsummaryrefslogtreecommitdiff
path: root/test/functional/core/job_spec.lua
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2024-05-26 09:34:29 +0200
committerbfredl <bjorn.linse@gmail.com>2024-05-26 10:24:27 +0200
commitb90d7c36cf8a93e02d834eb53f5d0c8f19a9d7fa (patch)
treebe6be35f4b823cb4bbb220e8318f63b8292d2b82 /test/functional/core/job_spec.lua
parent05a65432b6bb718d67dda370144e34faf933c086 (diff)
downloadrneovim-b90d7c36cf8a93e02d834eb53f5d0c8f19a9d7fa.tar.gz
rneovim-b90d7c36cf8a93e02d834eb53f5d0c8f19a9d7fa.tar.bz2
rneovim-b90d7c36cf8a93e02d834eb53f5d0c8f19a9d7fa.zip
refactor(tests): more global highlight definitions
Diffstat (limited to 'test/functional/core/job_spec.lua')
-rw-r--r--test/functional/core/job_spec.lua13
1 files changed, 4 insertions, 9 deletions
diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua
index e1efc07452..bf10033f53 100644
--- a/test/functional/core/job_spec.lua
+++ b/test/functional/core/job_spec.lua
@@ -910,11 +910,6 @@ describe('jobs', function()
it('hides cursor and flushes messages before blocking', function()
local screen = Screen.new(50, 6)
- screen:set_default_attr_ids({
- [0] = { foreground = Screen.colors.Blue, bold = true }, -- NonText
- [1] = { bold = true, reverse = true }, -- MsgSeparator
- [2] = { bold = true, foreground = Screen.colors.SeaGreen }, -- MoreMsg
- })
screen:attach()
command([[let g:id = jobstart([v:progpath, '--clean', '--headless'])]])
source([[
@@ -928,8 +923,8 @@ describe('jobs', function()
screen:expect {
grid = [[
|
- {0:~ }|*2
- {1: }|
+ {1:~ }|*2
+ {3: }|
aaa |
bbb |
]],
@@ -938,11 +933,11 @@ describe('jobs', function()
screen:expect {
grid = [[
|
- {1: }|
+ {3: }|
aaa |
bbb |
ccc |
- {2:Press ENTER or type command to continue}^ |
+ {6:Press ENTER or type command to continue}^ |
]],
}
feed('<CR>')