Skip to content

Commit

Permalink
chore: massaging language a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
iennae committed Oct 5, 2024
1 parent 57a0e47 commit b217430
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,19 +54,14 @@ Contributors are encouraged to use vanilla Node.js as much as pragmatically
possible to standardize writing, reviewing, and maintaining samples and their
tests, ideally reducing dependencies on third party libraries.

For tests, using the standard
library [assert](https://nodejs.org/docs/latest-v18.x/api/assert.html) is
preferred. The library provides a strict and a legacy mode; please use the
For tests, we recommend using the standard
library [assert](https://nodejs.org/docs/latest-v18.x/api/assert.html). The library provides a strict and a legacy mode; please use the
strict mode as shown below:

```js
const assert = require('node:assert/strict');
```

If you want to use a third party package, help us to understand if you have
requirements not fulfilled by core libraries in the description of your pull
request.

### CI testing

For new samples, a GitHub Actions workflow should be created to run your tests
Expand Down

0 comments on commit b217430

Please sign in to comment.