diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-12-17 15:53:11 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-12-17 16:09:18 +0100 |
commit | 103ff26c0ae76491c73a6c078b52f2e56af16fb8 (patch) | |
tree | 5b3f15b2d43a3a7caae0fdd6c3e581d6712ad2ee /test/functional/provider/nodejs_spec.lua | |
parent | e0054fef7d351b0f8af3a04bb22d6e6ee8bae63f (diff) | |
download | rneovim-103ff26c0ae76491c73a6c078b52f2e56af16fb8.tar.gz rneovim-103ff26c0ae76491c73a6c078b52f2e56af16fb8.tar.bz2 rneovim-103ff26c0ae76491c73a6c078b52f2e56af16fb8.zip |
provider/nodejs: check version in Detect()
Diffstat (limited to 'test/functional/provider/nodejs_spec.lua')
-rw-r--r-- | test/functional/provider/nodejs_spec.lua | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/functional/provider/nodejs_spec.lua b/test/functional/provider/nodejs_spec.lua index ef563dd0b0..0a12b1a154 100644 --- a/test/functional/provider/nodejs_spec.lua +++ b/test/functional/provider/nodejs_spec.lua @@ -9,9 +9,7 @@ local retry = helpers.retry do clear() if missing_provider('node') then - pending( - "Cannot find the neovim nodejs host. Try :checkhealth", - function() end) + pending("Missing nodejs host, or nodejs version is too old.", function()end) return end end |