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 1797a27 commit ebfeddaCopy full SHA for ebfedda
demo.js
@@ -12,7 +12,7 @@ if (debugXvfb.enabled) {
12
function startStop () {
13
const xvfb = Promise.promisifyAll(
14
new Xvfb({
15
- timeout: 100,
+ timeout: 10000,
16
onStderrData (data) {
17
if (debugXvfb.enabled) {
18
debugXvfb(data.toString())
@@ -21,7 +21,7 @@ function startStop () {
21
})
22
)
23
24
- const retryLimit = 50
+ const retryLimit = 0
25
const retryStart = (i = 0) => {
26
return xvfb.startAsync().catch({ timedOut: true }, (e) => {
27
console.log('Timed out', e.message)
0 commit comments