Skip to content

Latest commit

History

History
87 lines (60 loc) 路 3.25 KB

CONTRIBUTING.md

File metadata and controls

87 lines (60 loc) 路 3.25 KB

QUnit

Contributing

Welcome! Thanks for your interest in contributing to QUnit. This document is intended to help make your experience smooth and enjoyable. If you feel anything should be added or clarified, definitely let us know.

If this is your first time contributing to open-source software, you might want to take a look at the GitHub Guides.

If you get stuck or need help, you can always chat with us.

Where to begin

We've labelled some open issues as a "good first issue", which are issues that have a straight-forward outcome, don't require much knowledge of JavaScript, and don't require previous experience with QUnit.

Issues marked as "help welcome" may require a bit more JavaScript experience, and either don't need detailed knowledge of our code, or serve as good ways to gain familiarity with just one or two areas of the code.

You're also welcome to start on any other open issue. Feel free to comment in that case to ask for directions.

Contributor License Agreement

As a first step, in order to contribute to QUnit, you will need to sign the JS Foundation's CLA for QUnit.

Code

For code changes, you'll need to have Node.js installed.

Install dependencies in the repository via npm ci. Make your code changes and run npm test which will validate the syntax and coding style, and run unit and integration tests.

In general, code changes should be accompanied by a unit test to verify the change in functionality. Once the new tests are passing, make a commit, push it to your GitHub fork, and create the pull request.

Documentation

The API documentation for QUnit lives in the docs/ directory of this repository. For the rest of the QUnit website, see the qunitjs.com repo.

See docs/README.md for how to locally preview the API documentation site.

Commit messages

If you're a new contributor, don't worry if you're unsure about the commit message. The team will edit or write it for you as part of their code review and merge activities. If you're a regular contributor, do try to follow this structure as it helps others to more quickly find, understand, and merge your changes. Thanks!

Structure:

Component: Short subject line about what is changing

Additional details about the commit are placed after a new line
in the commit message body. That's this paragraph here.

As well as any additional paragraphs. The last block is the footer,
which is reserved for any "Ref", "Fixes" or "Closes" instructions
(one per line).

Fixes #1.

The subject line should use the imperative mood, and start with one of the following components:

  • All
  • Assert
  • Build
  • CLI
  • Core
  • Docs
  • Dump
  • HTML Reporter
  • Release
  • Tests

See also Commit message guidelines.