this repo has no description
at main 21 lines 348 B view raw
1#!/bin/bash 2cd "$(dirname "$0")" 3 4while [[ $# -gt 0 ]]; do 5 case "$1" in 6 --filter | -f) 7 export TEST_FILTER="$2" 8 shift 2 9 ;; 10 --filter=*) 11 export TEST_FILTER="${1#*=}" 12 shift 13 ;; 14 *) 15 shift 16 ;; 17 esac 18done 19 20export NVIM_APPNAME=nvim.test 21nvim --headless -c "lua require('vcmarkers_tests').run_functional()" -c "q" 2>&1