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.
2 parents 468fb75 + 8df1d4b commit 9116b3bCopy full SHA for 9116b3b
cucumber.cjs
@@ -1,7 +1,7 @@
1
module.exports = {
2
default: {
3
require: ['tests/e2e/**/*.js'],
4
- retry: process.env.RETRY || 0,
+ retry: parseInt(process.env.RETRY, 10) || 0,
5
format: ['@cucumber/pretty-formatter']
6
}
7
0 commit comments