From 45bf5b8f57605a68c58d40bb7aa88b421d14320f Mon Sep 17 00:00:00 2001 From: Alexander Vakrilov Date: Tue, 13 Mar 2018 15:42:51 +0100 Subject: [PATCH] chore(docs): Update writing-tests.md with note about code snippets comments (#5489) * Update WritingUnitTests.md * chore: typo --- WritingUnitTests.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/WritingUnitTests.md b/WritingUnitTests.md index 22faaa8bf..e2d791692 100644 --- a/WritingUnitTests.md +++ b/WritingUnitTests.md @@ -82,3 +82,7 @@ export function test_getJSON(done) { (error) => { done(error); }); // fail }; ``` + +# Misc + +When looking into the code of the existing tests, you might encounter strange comments looking like this `// >> animation-chaining`. These are markers for code snippets generated in the docs documetation. They are not related to testing so you don't need to add any of those in your tests.