diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2025-02-10 10:21:47 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-10 10:21:47 -0800 |
commit | c7d13f2895fa657ff3d9d45741f9abec25072b56 (patch) | |
tree | 0b61d786b8fb318a0e9b2c53eb633332af5aa05d /test/functional/core | |
parent | ad60b3fb4806c0917010bbe97876c22fb57cabcd (diff) | |
parent | a1906c23ddab6fa4d15bc5ceddee97df8034d8cb (diff) | |
download | rneovim-c7d13f2895fa657ff3d9d45741f9abec25072b56.tar.gz rneovim-c7d13f2895fa657ff3d9d45741f9abec25072b56.tar.bz2 rneovim-c7d13f2895fa657ff3d9d45741f9abec25072b56.zip |
Merge #32385 UI :detach command
Diffstat (limited to 'test/functional/core')
-rw-r--r-- | test/functional/core/job_spec.lua | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua index e833b5127d..75e09f3455 100644 --- a/test/functional/core/job_spec.lua +++ b/test/functional/core/job_spec.lua @@ -1265,12 +1265,16 @@ describe('jobs', function() ]]) feed(':q<CR>') - screen:expect([[ - | - [Process exited 0]^ | - |*4 - {3:-- TERMINAL --} | - ]]) + if is_os('freebsd') then + screen:expect { any = vim.pesc('[Process exited 0]') } + else + screen:expect([[ + | + [Process exited 0]^ | + |*4 + {3:-- TERMINAL --} | + ]]) + end end) end) |