blob: 164a4392f8f1f8b2c9788ff3bebf5577d0f6e8eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
PJ_ROOT=$(pwd)
if [ ! -d ./neovim ]; then
git clone --depth 1 https://github.com/neovim/neovim
fi
cd ./neovim
make functionaltest \
BUSTED_ARGS="--lpath=$PJ_ROOT/?.lua --lpath=$PJ_ROOT/lua/?.lua --lpath=$PJ_ROOT/lua/nvim_lsp/?.lua" \
TEST_FILE="../test/nvim_lsp_spec.lua"
|