chore(docs): Update writing-tests.md with note about code snippets comments (#5489)

* Update WritingUnitTests.md

* chore: typo
This commit is contained in:
Alexander Vakrilov
2018-03-13 15:42:51 +01:00
committed by GitHub
parent 319c153360
commit 45bf5b8f57

View File

@ -82,3 +82,7 @@ export function test_getJSON(done) {
(error) => { done(error); }); // fail (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.