OptionalconcurrentOptionalfailsWhether the test is expected to fail. If it does, the test will pass, otherwise it will fail.
OptionalmetaCustom test metadata available to reporters.
OptionalonlyShould this test be the only one running in a suite.
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.
OptionaltagsCustom tags of the test. Useful for filtering tests.
OptionaltimeoutTest timeout.
OptionaltodoWhether the test should be skipped and marked as a todo.
Whether suites and tests run concurrently. Tests inherit
concurrentfromdescribe()and nesteddescribe()will inherit from parent'sconcurrent.