Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 1x 1x 1x | export const DEFAULT_TIMEOUT = 60000
export const DEFAULT_OPTS = {
backtrace: false, // <boolean> show full backtrace for errors
requireModule: [], // <string[]> ("module") require MODULE files (repeatable)
failAmbiguousDefinitions: false, // <boolean> treat ambiguous definitions as errors
failFast: false, // <boolean> abort the run on first failure
ignoreUndefinedDefinitions: false, // <boolean> treat undefined definitions as warnings
name: [], // <REGEXP[]> only execute the scenarios with name matching the expression (repeatable)
profile: [], // <string> (name) specify the profile to use
require: [], // <string> (file/dir/glob) require files before executing features
order: 'defined', // <string> switch between deterministic and random feature execution. Either "defined", "random" or "random:42" whereas 42 is the seed for randomization
snippetSyntax: undefined, // <string> specify a custom snippet syntax
snippets: true, // <boolean> hide step definition snippets for pending steps
source: true, // <boolean> hide source uris
strict: false, // <boolean> fail if there are any undefined or pending steps
tagExpression: '', // <string> (expression) only execute the features or scenarios with tags matching the expression
tagsInTitle: false, // <boolean> add cucumber tags to feature or scenario name
timeout: DEFAULT_TIMEOUT // <number> timeout for step definitions in milliseconds
}
export const NOOP = /* istanbul ignore next */ function () {}
|