From 6a45dee953d01bb6b356bcd50ddd79865baef884 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Fri, 19 May 2017 18:55:17 +0200 Subject: [PATCH] doc: link to `common` docs in test writing guide --- doc/guides/writing-tests.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/guides/writing-tests.md b/doc/guides/writing-tests.md index 3cb87623ae838e..4d15f73ae8395e 100644 --- a/doc/guides/writing-tests.md +++ b/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 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. 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 [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