aboutsummaryrefslogtreecommitdiff
path: root/test/helpers.lua
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2023-01-31 23:35:04 +0100
committerbfredl <bjorn.linse@gmail.com>2023-02-10 20:19:04 +0100
commitd6279f9392073cb1422d76c57baf3fd283ed954e (patch)
tree744661e70dd843edb434c662355cc3062de2d78a /test/helpers.lua
parente5d8220179f932ab9c9ef59996cab357a25eaaf8 (diff)
downloadrneovim-d6279f9392073cb1422d76c57baf3fd283ed954e.tar.gz
rneovim-d6279f9392073cb1422d76c57baf3fd283ed954e.tar.bz2
rneovim-d6279f9392073cb1422d76c57baf3fd283ed954e.zip
refactor(tests): move lua-client into core and use it for functionaltests
Eliminates lua-client and non-static libluv as test time dependencies Note: the API for a public lua-client is not yet finished. The interface needs to be adjusted to work in the embedded loop of a nvim instance (to use it to talk between instances)
Diffstat (limited to 'test/helpers.lua')
-rw-r--r--test/helpers.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helpers.lua b/test/helpers.lua
index 82ff23bef8..d45536b42b 100644
--- a/test/helpers.lua
+++ b/test/helpers.lua
@@ -1,5 +1,5 @@
require('test.compat')
-local shared = require('vim.shared')
+local shared = vim
local assert = require('luassert')
local busted = require('busted')
local luv = require('luv')