mirror of
https://github.com/smoka7/hop.nvim.git
synced 2026-07-21 22:17:16 -04:00
9 lines
257 B
Makefile
9 lines
257 B
Makefile
# run tests located at «lua/tests/» (files named *_spec.lua)
|
|
TESTS_INIT=tests/minimal_init.lua
|
|
TESTS_DIR=tests/
|
|
|
|
.PHONY: test
|
|
|
|
test:
|
|
nvim --headless --noplugin -u ${TESTS_INIT} -c "PlenaryBustedDirectory ${TESTS_DIR} { minimal_init = '${TESTS_INIT}' }"
|