mirror of https://github.com/tc39/test262.git
parent
4914e47d0b
commit
56fd7712d2
|
@ -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]
|
||||||
|
|
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue