We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cad89b commit 51e726eCopy full SHA for 51e726e
lib/command/interactive.js
@@ -23,15 +23,23 @@ module.exports = async function (path, options) {
23
24
if (options.verbose) output.level(3)
25
26
+ let addGlobalRetries
27
+
28
+ if (config.retry) {
29
+ addGlobalRetries = function retries() {}
30
+ }
31
32
output.print('Starting interactive shell for current suite...')
33
recorder.start()
34
event.emit(event.suite.before, {
35
fullTitle: () => 'Interactive Shell',
36
tests: [],
37
+ retries: addGlobalRetries,
38
})
39
event.emit(event.test.before, {
40
title: '',
41
artifacts: {},
42
43
44
45
const enabledHelpers = Container.helpers()
0 commit comments