summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CONTRIBUTING.md4
-rw-r--r--INTERPRETING.md4
2 files changed, 8 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index a3230e9f7..df2d290ac 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -137,6 +137,10 @@ This tag is for boolean properties associated with the test.
`noStrict`
- **`async`** - defer interpretation of test results until after the invocation
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**: [list]
diff --git a/INTERPRETING.md b/INTERPRETING.md
index af5409531..e68fdf3e5 100644
--- a/INTERPRETING.md
+++ b/INTERPRETING.md
@@ -284,3 +284,7 @@ following strings:
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.