diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-10-31 08:04:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-31 00:04:51 +0000 |
commit | 8df682250768be9a07f855bb89ada665b7626413 (patch) | |
tree | 70d99d48dfa44b4533dfcaea9243eefecbc5efa0 /test/functional/core/log_spec.lua | |
parent | b4599acbf8e30aa1234bc4041546f960dcc3a238 (diff) | |
download | rneovim-8df682250768be9a07f855bb89ada665b7626413.tar.gz rneovim-8df682250768be9a07f855bb89ada665b7626413.tar.bz2 rneovim-8df682250768be9a07f855bb89ada665b7626413.zip |
test: fix files being left behind (#31004)
Diffstat (limited to 'test/functional/core/log_spec.lua')
-rw-r--r-- | test/functional/core/log_spec.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/core/log_spec.lua b/test/functional/core/log_spec.lua index a952730779..57dfd6364c 100644 --- a/test/functional/core/log_spec.lua +++ b/test/functional/core/log_spec.lua @@ -15,6 +15,7 @@ describe('log', function() after_each(function() expect_exit(command, 'qa!') + vim.uv.sleep(10) -- Wait for Nvim to fully exit os.remove(testlog) end) |