blob: 54bc1325e54f2dd7970dfc538509178b48217bd2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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}' }"
|