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: README.md
+2-4
Original file line number
Diff line number
Diff line change
@@ -239,15 +239,13 @@ You need to install `npm` first--this comes with node.js, so install that one fi
239
239
npm install
240
240
```
241
241
242
-
if running the tests for the first time, to install additional dependencies for running tests, and then run
242
+
To run the tests run:
243
243
244
244
```bash
245
245
npm test
246
246
```
247
247
248
-
every time you want to run the tests.
249
-
250
-
If you want to add any feature or change existing features, you _must_ run the tests to make sure you didn't break anything else. If you send a pull request (PR) to add something new and it doesn't have tests, or the tests don't pass, the PR won't be accepted. See [contributing](CONTRIBUTING.md) for more information.
248
+
If you want to add any feature or change existing features, you _must_ run the tests to make sure you didn't break anything else. Any pull request (PR) needs to have updated passing tests for feature changes (or new passing tests for new features) in `src/tests.ts`, otherwise the PR won't be accepted. See [contributing](CONTRIBUTING.md) for more information.
0 commit comments