Browse Source
doc: link to `common` docs in test writing guide
PR-URL: https://github.com/nodejs/node/pull/13118
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Michael Dawson <mhdawson@ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
v6
Anna Henningsen
8 years ago
No known key found for this signature in database
GPG Key ID: D8B9F5AEAE84E4CF
1 changed files with
2 additions and
1 deletions
-
doc/guides/writing-tests.md
|
@ -56,7 +56,7 @@ const common = require('../common'); |
|
|
The first line enables strict mode. All tests should be in strict mode unless |
|
|
The first line enables strict mode. All tests should be in strict mode unless |
|
|
the nature of the test requires that the test run without it. |
|
|
the nature of the test requires that the test run without it. |
|
|
|
|
|
|
|
|
The second line loads the `common` module. The `common` module is a helper |
|
|
The second line loads the `common` module. The [`common` module][] is a helper |
|
|
module that provides useful tools for the tests. |
|
|
module that provides useful tools for the tests. |
|
|
|
|
|
|
|
|
Even if a test uses no functions or other properties exported by `common`, |
|
|
Even if a test uses no functions or other properties exported by `common`, |
|
@ -340,3 +340,4 @@ will depend on what is being tested if this is required or not. |
|
|
|
|
|
|
|
|
[Google Test]: https://github.com/google/googletest |
|
|
[Google Test]: https://github.com/google/googletest |
|
|
[Test fixture]: https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#test-fixtures-using-the-same-data-configuration-for-multiple-tests |
|
|
[Test fixture]: https://github.com/google/googletest/blob/master/googletest/docs/Primer.md#test-fixtures-using-the-same-data-configuration-for-multiple-tests |
|
|
|
|
|
[`common` module]: https://github.com/nodejs/node/blob/master/test/common/README.md |
|
|