You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/CONTRIBUTING.md
+29-29
Original file line number
Diff line number
Diff line change
@@ -40,35 +40,35 @@ We ask you please keep these goals in mind when making or proposing changes.
40
40
41
41
Follow these steps to get going. If you are having trouble, don't be afraid to [ask for help](#got-a-question).
42
42
43
-
1.[Install Node.js 4.x or newer](https://nodejs.org/download).
44
-
1.Install [GNU Make](https://www.gnu.org/software/make/) or equivalent.
45
-
1.Follow [Github's documentation](https://help.github.com/articles/fork-a-repo/) on setting up Git, forking and cloning.
46
-
1.Create a new branch in your working copy. Give your branch a descriptive name, such as `issue/12345`: `git checkout -b issue/12345`.
47
-
1.Execute `npm install` to install the development dependencies.
48
-
1.Make your changes and add them via `git add`.
49
-
-**Do not modify** the root `mocha.js` file directly; it is automatically generated.
50
-
- Your changes will likely be somewhere in `lib/`, `bin/` or `browser-entry.js` if your changes are browser-specific.
51
-
- Please add unit and/or integration tests (depending on the nature of your changes).
52
-
- Keep your PR focused. Don't fix two things at once, or make formatting changes alongside bug fixes.
53
-
1.Before committing, run `npm test`.
54
-
- This will run unit tests, Node.js and browser integration tests, and lint the source code.
55
-
- The "browser" tests use Mocha to test itself; it will rebuild the root `mocha.js` file with your changes.
56
-
-**Please avoid committing changes to `mocha.js`**.
57
-
- Ultimately, your pull request will be built on our continuous integration servers ([Travis CI](https://travis-ci.org/mochajs/mocha) and [AppVeyor](https://ci.appveyor.com/project/boneskull/mocha)). The first step to ensuring these checks pass is to test on your own machine.
58
-
1.Commit your changes.
59
-
- Use a brief message on the first line, referencing a relevant issue (e.g. `#12345`).
60
-
- Add detail in subsequent lines.
61
-
1.Push your changes to your fork.
62
-
1.Navigate to the source repository. You should see a notification about your recent changes in your fork's branch, with a button to create a pull request. Click it.
63
-
1.Describe your changes in detail here. Once you're satisfied, submit the form.
64
-
-*PRO TIP*: If you've used a multi-line commit message, Github will pre-fill the PR's description with it.
65
-
1.If you have not signed our Contributor License Agreement, a friendly robot will prompt you to do so. A [CLA](https://cla.js.foundation/mochajs/mocha) (electronic) signature is **required** for all contributions of code to Mocha.
66
-
1.CI will run against your changes.
67
-
- If the changes fail the checks, you will need to address those before merging.
68
-
- You don't need to make a new PR to make changes. Instead, commit on top of your changes, and push these to your fork's branch. The PR will be updated, and CI will re-run.
69
-
- Github will indicate if there's a conflict. If this happens, you will need to [rebase](https://help.github.com/articles/about-git-rebase/) your branch onto the `master` branch of the source repository. *Don't merge.*
70
-
- It's no longer necessary to "squash" your changes.
71
-
1.Be patient while your PR is reviewed. This can take awhile ([why?](https://github.com/orgs/mochajs/projects/4)). We may request changes; don't be afraid to question them.
43
+
1.[Install Node.js 4.x or newer](https://nodejs.org/download).
44
+
1. Install [GNU Make](https://www.gnu.org/software/make/) or equivalent.
45
+
1. Follow [Github's documentation](https://help.github.com/articles/fork-a-repo/) on setting up Git, forking and cloning.
46
+
1. Create a new branch in your working copy. Give your branch a descriptive name, such as `issue/12345`: `git checkout -b issue/12345`.
47
+
1. Execute `npm install` to install the development dependencies.
48
+
1. Make your changes and add them via `git add`.
49
+
-**Do not modify** the root `mocha.js` file directly; it is automatically generated.
50
+
- Your changes will likely be somewhere in `lib/`, `bin/` or `browser-entry.js` if your changes are browser-specific.
51
+
- Please add unit and/or integration tests (depending on the nature of your changes).
52
+
- Keep your PR focused. Don't fix two things at once, or make formatting changes alongside bug fixes.
53
+
1. Before committing, run `npm test`.
54
+
- This will run unit tests, Node.js and browser integration tests, and lint the source code.
55
+
- The "browser" tests use Mocha to test itself; it will rebuild the root `mocha.js` file with your changes.
56
+
-**Please avoid committing changes to `mocha.js`**.
57
+
- Ultimately, your pull request will be built on our continuous integration servers ([Travis CI](https://travis-ci.org/mochajs/mocha) and [AppVeyor](https://ci.appveyor.com/project/boneskull/mocha)). The first step to ensuring these checks pass is to test on your own machine.
58
+
1. Commit your changes.
59
+
- Use a brief message on the first line, referencing a relevant issue (e.g. `#12345`).
60
+
- Add detail in subsequent lines.
61
+
1. Push your changes to your fork.
62
+
1. Navigate to the source repository. You should see a notification about your recent changes in your fork's branch, with a button to create a pull request. Click it.
63
+
1. Describe your changes in detail here. Once you're satisfied, submit the form.
64
+
-*PRO TIP*: If you've used a multi-line commit message, Github will pre-fill the PR's description with it.
65
+
1. If you have not signed our Contributor License Agreement, a friendly robot will prompt you to do so. A [CLA](https://cla.js.foundation/mochajs/mocha) (electronic) signature is **required** for all contributions of code to Mocha.
66
+
1. CI will run against your changes.
67
+
- If the changes fail the checks, you will need to address those before merging.
68
+
- You don't need to make a new PR to make changes. Instead, commit on top of your changes, and push these to your fork's branch. The PR will be updated, and CI will re-run.
69
+
- Github will indicate if there's a conflict. If this happens, you will need to [rebase](https://help.github.com/articles/about-git-rebase/) your branch onto the `master` branch of the source repository. *Don't merge.*
70
+
- It's no longer necessary to "squash" your changes.
71
+
1. Be patient while your PR is reviewed. This can take awhile ([why?](https://github.com/orgs/mochajs/projects/4)). We may request changes; don't be afraid to question them.
Copy file name to clipboardexpand all lines: .github/ISSUE_TEMPLATE.md
+18-15
Original file line number
Diff line number
Diff line change
@@ -4,16 +4,18 @@ For more, check out the Mocha Gitter chat room: https://gitter.im/mochajs/mocha
4
4
-->
5
5
6
6
### Prerequisites
7
+
7
8
<!--
8
9
Place an `x` between the square brackets on the lines below for every satisfied prerequisite.
9
10
-->
10
-
*[ ] Checked that your issue isn't already filed by cross referencing [issues with the `common mistake` label](https://github.com/mochajs/mocha/issues?utf8=%E2%9C%93&q=is%3Aissue%20label%3Acommon-mistake%20)
11
-
*[ ] Checked next-gen ES issues and syntax problems by using the same environment and/or transpiler configuration without Mocha to ensure it isn't just a feature that actually isn't supported in the environment in question or a bug in your code.
12
-
*[ ]'Smoke tested' the code to be tested by running it outside the real test suite to get a better sense of whether the problem is in the code under test, your usage of Mocha, or Mocha itself
13
-
*[ ]Ensured that there is no discrepancy between the locally and globally installed versions of Mocha. You can find them with:
14
-
`node node_modules/.bin/mocha --version`(Local) and `mocha --version`(Global). We recommend avoiding the use of globally installed Mocha.
11
+
12
+
-[ ] Checked that your issue isn't already filed by cross referencing [issues with the `common mistake` label](https://github.com/mochajs/mocha/issues?utf8=%E2%9C%93&q=is%3Aissue%20label%3Acommon-mistake%20)
13
+
-[ ]Checked next-gen ES issues and syntax problems by using the same environment and/or transpiler configuration without Mocha to ensure it isn't just a feature that actually isn't supported in the environment in question or a bug in your code.
14
+
-[ ]'Smoke tested' the code to be tested by running it outside the real test suite to get a better sense of whether the problem is in the code under test, your usage of Mocha, or Mocha itself
15
+
-[ ] Ensured that there is no discrepancy between the locally and globally installed versions of Mocha. You can find them with: `node node_modules/.bin/mocha --version`(Local) and `mocha --version`(Global). We recommend avoiding the use of globally installed Mocha.
15
16
16
17
### Description
18
+
17
19
<!--
18
20
[Description of the issue]
19
21
-->
@@ -32,18 +34,19 @@ on how to create a minimal, complete, and verifiable example.
32
34
**Reproduces how often:**[What percentage of the time does it reproduce?]
33
35
34
36
### Versions
35
-
<!--
36
-
If applicable, please specify:
37
-
* The output of `mocha --version` and `node node_modules/.bin/mocha --version`:
38
-
* The output of `node --version`:
39
-
* The version and architecture of your operating system:
40
-
* Your shell (bash, zsh, PowerShell, cmd, etc.):
41
-
* Your browser and version (if running browser tests):
42
-
* Any other third party Mocha related modules (with versions):
43
-
* The code transpiler being used:
44
-
-->
37
+
38
+
<!-- If applicable, please specify:-->
39
+
40
+
-The output of `mocha --version` and `node node_modules/.bin/mocha --version`:
41
+
-The output of `node --version`:
42
+
- The version and architecture of your operating system:
43
+
-Your shell (bash, zsh, PowerShell, cmd, etc.):
44
+
- Your browser and version (if running browser tests):
45
+
- Any other third party Mocha related modules (with versions):
46
+
- The code transpiler being used:
45
47
46
48
### Additional Information
49
+
47
50
<!--
48
51
Any additional information, configuration or data that might be necessary to reproduce the issue.
0 commit comments