From fbf21e556256fe98831d4a7108612e26a87c3563 Mon Sep 17 00:00:00 2001 From: Evin O'Shea <41702196+evinosheaforward@users.noreply.github.com> Date: Tue, 16 Apr 2024 19:30:54 -0400 Subject: [PATCH] docs: correct bun run test to bun run test:all for new contributers (#2177) Co-authored-by: Evin O'Shea --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 008fee359..06471cf02 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -45,7 +45,7 @@ Good documentation is crucial for our users. If your contribution involves chang 1. Fork the MobX-State-Tree repository on GitHub to your own GitHub account. 2. Clone your fork to your local machine. 3. Create a new branch for your changes: `git checkout -b my-feature`. -4. Before starting, it's not a bad idea to `bun install && bun run build && bun run test` to check that your machine can run the full test suite to start. +4. Before starting, it's not a bad idea to `bun install && bun run build && bun run test:all` to check that your machine can run the full test suite to start. 5. Make your changes and ensure that all tests pass (including any new tests you have added). 6. Update the documentation if necessary. 7. Commit your changes: `git commit -m "Add my feature"`. Please consider [following conventional commit formatting](https://www.conventionalcommits.org/en/v1.0.0/).