Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 879 Bytes

CONTRIBUTING.md

File metadata and controls

31 lines (23 loc) · 879 Bytes

Setup up your dev environment

  1. Fork the repo and create your branch from master. A guide on how to fork a repository: https://help.github.com/articles/fork-a-repo/

    Open terminal (e.g. Terminal, iTerm, Git Bash or Git Shell) and type:

    git clone https://github.com/<your_username>/jest-watch-select-projects
    cd jest
    git checkout -b my_branch

    Note: Replace <your_username> with your GitHub username

  2. jest-watch-select-projects uses Yarn for running development scripts. If you haven't already done so, please install yarn.

  3. Run yarn.

    yarn
  4. If you've changed APIs, update the documentation.

  5. Ensure the test suite passes via yarn test. To run the test suite you

    yarn test