diff options
author | James McCoy <jamessan@jamessan.com> | 2016-09-14 10:19:07 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-09-14 20:56:47 -0400 |
commit | df99e43ba46ba6475b2fede9110616d761079fb7 (patch) | |
tree | 2ac599a1b0bfdea53f713aca4807a7f47d2a2ac3 | |
parent | 5f42184873828f9a19ea5104b9b696c09849cab4 (diff) | |
download | rneovim-df99e43ba46ba6475b2fede9110616d761079fb7.tar.gz rneovim-df99e43ba46ba6475b2fede9110616d761079fb7.tar.bz2 rneovim-df99e43ba46ba6475b2fede9110616d761079fb7.zip |
tests/ui: Stop the terminal job after testing
When running the tests in a contained environment, the lingering
terminal processes prevent the unmounting of the filesystems in the
contained environment.
-rw-r--r-- | test/functional/ui/output_spec.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/ui/output_spec.lua b/test/functional/ui/output_spec.lua index 6d24a3c9ff..5576870b29 100644 --- a/test/functional/ui/output_spec.lua +++ b/test/functional/ui/output_spec.lua @@ -21,6 +21,7 @@ describe("shell command :!", function() end) after_each(function() + child_session.feed_data("\3") -- Ctrl-C screen:detach() end) |