We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10413ca commit c2e818dCopy full SHA for c2e818d
doc/guides/writing-tests.md
@@ -231,8 +231,12 @@ assert.throws(
231
232
For performance considerations, we only use a selected subset of ES.Next
233
features in JavaScript code in the `lib` directory. However, when writing
234
-tests, it is encouraged to use ES.Next features that have already landed
235
-in the ECMAScript specification. For example:
+tests, for the ease of backporting, it is encouraged to use those ES.Next
+features that can be used directly without a flag in [all maintained branches]
236
+(https://github.com/nodejs/lts), you can check [node.green](http://node.green)
237
+for all available features in each release.
238
+
239
+For example:
240
241
* `let` and `const` over `var`
242
* Template literals over string concatenation
0 commit comments