@@ -229,7 +229,7 @@ argument. It is not a good idea to simply pass `common.mustCall()` to those
229229because ` common.mustCall() ` will ignore the error. Use ` common.mustSucceed() `
230230instead.
231231
232- #### Countdown Module
232+ #### Countdown module
233233
234234The common [ Countdown module] ( https://github.com/nodejs/node/tree/HEAD/test/common#countdown-module )
235235provides a simple countdown mechanism for tests that require a particular
@@ -345,7 +345,7 @@ in each release, such as:
345345* Template literals over string concatenation
346346* Arrow functions when appropriate
347347
348- ## Naming Test Files
348+ ## Naming test files
349349
350350Test files are named using kebab casing. The first component of the name is
351351` test ` . The second is the module or subsystem being tested. The third is usually
@@ -357,13 +357,13 @@ named `test-process-before-exit.js`. If the test specifically checked that arrow
357357functions worked correctly with the ` beforeExit ` event, then it might be named
358358` test-process-before-exit-arrow-functions.js ` .
359359
360- ## Imported Tests
360+ ## Imported tests
361361
362- ### Web Platform Tests
362+ ### Web platform tests
363363
364364See [ ` test/wpt ` ] ( ../../test/wpt/README.md ) for more information.
365365
366- ## C++ Unit test
366+ ## C++ unit test
367367
368368C++ code can be tested using [ Google Test] [ ] . Most features in Node.js can be
369369tested using the methods described previously in this document. But there are
@@ -444,7 +444,7 @@ and tearing it down after the tests have finished.
444444It also contains a helper to create arguments to be passed into Node.js. It
445445will depend on what is being tested if this is required or not.
446446
447- ### Test Coverage
447+ ### Test coverage
448448
449449To generate a test coverage report, see the
450450[ Test Coverage section of the Building guide] [ ] .
0 commit comments