Files
watchexec.nvim/run_tests.ps1
T

10 lines
414 B
PowerShell
Raw Normal View History

$plenaryPath = ".tests/vendor/plenary.nvim"
if (-not (Test-Path $plenaryPath)) {
Write-Host "Bootstrapping plenary.nvim for tests..." -ForegroundColor Yellow
New-Item -ItemType Directory -Path ".tests/vendor" -Force | Out-Null
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim $plenaryPath
}
2026-07-04 08:46:05 -05:00
nvim --headless -c "PlenaryBustedDirectory tests/watchexec/ {minimal_init = 'tests/minimal_init.lua'}"