| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent a0bab69 commit 099eef6
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -65,7 +65,7 @@ Some key elements of this include: | |||
| 65 | 65 | * Low-friction policies and processes | |
| 66 | 66 | * Good CI and tooling to make maintainers productive | |
| 67 | 67 | ||
| 68 | - ### 5 - Up to date Technology and APIs | ||
| 68 | + ### 5 - Up to date technology and APIs | ||
| 69 | 69 | We value providing developers with modern APIs and technologies | |
| 70 | 70 | following existing standards whenever possible. | |
| 71 | 71 | Some key elements of this include: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | - # Using the internal/errors.js Module | ||
| 1 | + # Using the internal/errors.js module | ||
| 2 | 2 | ||
| 3 | 3 | ## What is internal/errors.js | |
| 4 | 4 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -229,7 +229,7 @@ argument. It is not a good idea to simply pass `common.mustCall()` to those | |||
| 229 | 229 | because `common.mustCall()` will ignore the error. Use `common.mustSucceed()` | |
| 230 | 230 | instead. | |
| 231 | 231 | ||
| 232 | - #### Countdown Module | ||
| 232 | + #### Countdown module | ||
| 233 | 233 | ||
| 234 | 234 | The common [Countdown module](https://github.com/nodejs/node/tree/HEAD/test/common#countdown-module) | |
| 235 | 235 | provides a simple countdown mechanism for tests that require a particular | |
@@ -345,7 +345,7 @@ in each release, such as: | |||
| 345 | 345 | * Template literals over string concatenation | |
| 346 | 346 | * Arrow functions when appropriate | |
| 347 | 347 | ||
| 348 | - ## Naming Test Files | ||
| 348 | + ## Naming test files | ||
| 349 | 349 | ||
| 350 | 350 | Test files are named using kebab casing. The first component of the name is | |
| 351 | 351 | `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 | |||
| 357 | 357 | functions worked correctly with the `beforeExit` event, then it might be named | |
| 358 | 358 | `test-process-before-exit-arrow-functions.js`. | |
| 359 | 359 | ||
| 360 | - ## Imported Tests | ||
| 360 | + ## Imported tests | ||
| 361 | 361 | ||
| 362 | - ### Web Platform Tests | ||
| 362 | + ### Web platform tests | ||
| 363 | 363 | ||
| 364 | 364 | See [`test/wpt`](../../test/wpt/README.md) for more information. | |
| 365 | 365 | ||
| 366 | - ## C++ Unit test | ||
| 366 | + ## C++ unit test | ||
| 367 | 367 | ||
| 368 | 368 | C++ code can be tested using [Google Test][]. Most features in Node.js can be | |
| 369 | 369 | tested using the methods described previously in this document. But there are | |
@@ -444,7 +444,7 @@ and tearing it down after the tests have finished. | |||
| 444 | 444 | It also contains a helper to create arguments to be passed into Node.js. It | |
| 445 | 445 | will depend on what is being tested if this is required or not. | |
| 446 | 446 | ||
| 447 | - ### Test Coverage | ||
| 447 | + ### Test coverage | ||
| 448 | 448 | ||
| 449 | 449 | To generate a test coverage report, see the | |
| 450 | 450 | [Test Coverage section of the Building guide][]. | |
| Back | FazBrowse Home | New Git URL |
0 commit comments