Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.06 KB

CONTRIBUTING.md

File metadata and controls

32 lines (26 loc) · 1.06 KB

Contributing

To contribute to Nuxt Test Utils, you need to set up a local environment.

  1. Fork the nuxt/test-utils repository to your own GitHub account and then clone it to your local device.
  2. Enable Corepack to have access to pnpm
    corepack enable
  3. Run pnpm install to install the dependencies with pnpm:
    pnpm install && pnpm playwright install chromium
  4. Activate the passive development system
    pnpm dev:prepare
  5. Check out a branch where you can work and commit your changes:
    git checkout -b my-new-branch

Then, test your changes against the examples before submitting a pull request.

pnpm prepack
pnpm test:examples
pnpm dev:prepare

Read more in the Nuxt Contribution Guide.