File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -54,19 +54,14 @@ Contributors are encouraged to use vanilla Node.js as much as pragmatically
54
54
possible to standardize writing, reviewing, and maintaining samples and their
55
55
tests, ideally reducing dependencies on third party libraries.
56
56
57
- For tests, using the standard
58
- library [ assert] ( https://nodejs.org/docs/latest-v18.x/api/assert.html ) is
59
- preferred. The library provides a strict and a legacy mode; please use the
57
+ For tests, we recommend using the standard
58
+ library [ assert] ( https://nodejs.org/docs/latest-v18.x/api/assert.html ) . The library provides a strict and a legacy mode; please use the
60
59
strict mode as shown below:
61
60
62
61
``` js
63
62
const assert = require (' node:assert/strict' );
64
63
```
65
64
66
- If you want to use a third party package, help us to understand if you have
67
- requirements not fulfilled by core libraries in the description of your pull
68
- request.
69
-
70
65
### CI testing
71
66
72
67
For new samples, a GitHub Actions workflow should be created to run your tests
You can’t perform that action at this time.
0 commit comments