OptionalconcurrentWhether suites and tests run concurrently.
Tests inherit concurrent from describe() and nested describe() will inherit from parent's concurrent.
OptionaldescriptionA description for the tag. This will be shown in the CLI help and UI.
OptionalfailsWhether the test is expected to fail. If it does, the test will pass, otherwise it will fail.
OptionalmetaCustom test metadata available to reporters.
The name of the tag. This is what you use in the tags array in tests.
OptionalonlyShould this test be the only one running in a suite.
OptionalpriorityPriority for merging options when multiple tags with the same options are applied to a test.
Lower number means higher priority. E.g., priority 1 takes precedence over priority 3.
OptionalrepeatsHow many times the test will run again.
Only inner tests will repeat if set on describe(), nested describe() will inherit parent's repeat by default.
OptionalretryRetry configuration for the test.
OptionalsequentialWhether tests run sequentially.
Tests inherit sequential from describe() and nested describe() will inherit from parent's sequential.
OptionalskipWhether the test should be skipped.
OptionaltimeoutTest timeout.
OptionaltodoWhether the test should be skipped and marked as a todo.
Construct a type with the properties of T except for those in type K.