Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 852 Bytes

CONTRIBUTING.md

File metadata and controls

33 lines (23 loc) · 852 Bytes

Setup up your dev environment

  1. Fork the repo and create your branch from main. 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-runner-utils
    cd jest
    git checkout -b my_branch

    Note: Replace <your_username> with your GitHub username

  2. jest-runner-utils 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