From 9f52a56cfc455a71a0ff9741991d4da4ad225920 Mon Sep 17 00:00:00 2001 From: Nova <53813852+novacoole@users.noreply.github.com> Date: Thu, 13 Nov 2025 14:09:46 +0800 Subject: [PATCH] Change test command from 'bun test' to 'bun run test' Updated test command in contributing guidelines. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ff9f7ffc..f372dab9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,7 +16,7 @@ Here is a quick guide to doing code contributions to the library. 4. If you've added a code that should be tested, ensure the test suite still passes. - > bun test + > bun run test 5. Try to write some unit tests to cover as much of your code as possible.