From 1e725567143ebc7888f891e70a71aab18d8d126c Mon Sep 17 00:00:00 2001 From: Chuan-kai Lin Date: Wed, 24 Sep 2025 11:10:24 -0700 Subject: [PATCH] build: use --serial in 'just test_file' Some tests require the --serial flag to pass. --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index f146ed9b48..c951b4b063 100644 --- a/justfile +++ b/justfile @@ -22,7 +22,7 @@ test: build # Run the tests for a single file test_file filename: build - npx ava --verbose {{filename}} + npx ava --serial --verbose {{filename}} [doc("Refresh the .js build artefacts in the lib directory")] [confirm]