mirror of
https://github.com/neovim/neovim.git
synced 2026-04-05 07:09:23 +00:00
test: remove inspect test; set NODE_PATH in nodejs_spec.lua
provider#node#can_inspect will fail on some systems because it is common to have old node versions in OS (any Linux OS that has LTS releases) and CI (Travis, Appveyor). NODE_PATH can be trivially set with VimL. Build scripts don't have to set it for the nodejs tests to work. NODE_PATH is optional to begin with and is used only as a workaround for the neovim node.js host.
This commit is contained in:
committed by
Justin M. Keyes
parent
a1adfdc7d5
commit
5b692124cc
@@ -4,8 +4,6 @@ local missing_provider = helpers.missing_provider
|
||||
local command = helpers.command
|
||||
local write_file = helpers.write_file
|
||||
local eval = helpers.eval
|
||||
local sleep = helpers.sleep
|
||||
local funcs = helpers.funcs
|
||||
local retry = helpers.retry
|
||||
|
||||
do
|
||||
@@ -20,12 +18,7 @@ end
|
||||
|
||||
before_each(function()
|
||||
clear()
|
||||
end)
|
||||
|
||||
describe('nodejs', function()
|
||||
it('can inspect', function()
|
||||
eq(1, funcs['provider#node#can_inspect']())
|
||||
end)
|
||||
command([[let $NODE_PATH = get(split(system('npm root -g'), "\n"), 0, '')]])
|
||||
end)
|
||||
|
||||
describe('nodejs host', function()
|
||||
|
||||
Reference in New Issue
Block a user