Skip to content

Commit 7b15d03

Browse files
authored
test(makefile): use --clean for isolated test runs (#1338)
Switches the test target to use `nvim --headless --clean` instead of `--noplugin` to ensure tests run in a fully isolated environment, avoiding interference from user or system configuration. This improves test reliability and consistency.
1 parent 07d43b4 commit 7b15d03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ install-pre-commit:
2424
pre-commit install
2525

2626
test:
27-
nvim --headless --noplugin -u ./scripts/test.lua
27+
nvim --headless --clean -u ./scripts/test.lua
2828

2929
all: luajit
3030

0 commit comments

Comments
 (0)