blob: 1a692cd02b361e9e53847704df9c8735a74791d8 (
plain)
1
2
3
4
5
6
7
8
|
NVIM ?= nvim
.PHONY: test
test:
NVIM_LOG_FILE=/dev/null $(NVIM) --headless -u NONE -i NONE -l tests/run.lua
NVIM_LOG_FILE=/dev/null $(NVIM) --headless -u NONE -i NONE -l tests/host_adapter_contract.lua
NVIM_LOG_FILE=/dev/null $(NVIM) --headless -u NONE -i NONE -l tests/plugin_smoke.lua
|