Document test flag: `generated` (#886)

Resolves gh-885
This commit is contained in:
jugglinmike 2017-03-06 12:12:42 -05:00 committed by Leo Balter
parent 4914e47d0b
commit 56fd7712d2
2 changed files with 8 additions and 0 deletions

View File

@ -137,6 +137,10 @@ This tag is for boolean properties associated with the test.
`noStrict` `noStrict`
- **`async`** - defer interpretation of test results until after the invocation - **`async`** - defer interpretation of test results until after the invocation
of the global `$DONE` function of the global `$DONE` function
- **`generated`** - informative flag used to denote test files that were
created procedurally using the project's test generation tool; refer to the
section titled "Procedurally-generated tests" for more information on this
process
#### features #### features
**features**: [list] **features**: [list]

View File

@ -284,3 +284,7 @@ following strings:
print('Error: ' + reason); print('Error: ' + reason);
}); });
``` ```
- **`generated`** The test file was created procedurally using the project's
test generation tool. This flag is specified for informational purposes only
and has no bearing on how the test should be interpreted.