Skip to content

Commit

Permalink
Increased test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
jazz-soft committed Sep 24, 2019
1 parent 38071c8 commit 4d46b0c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions test/tests.js
Expand Up @@ -517,7 +517,7 @@ module.exports = function(JZZ, PARAMS, DRIVER) {
});
}
function onFail(err) { console.log('requestMIDIAccess failed!', err); }
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 50);
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 100);
});
},

Expand All @@ -536,7 +536,7 @@ module.exports = function(JZZ, PARAMS, DRIVER) {
setTimeout(function() { src.connect(); }, 10);
}
function onFail(err) { console.log('requestMIDIAccess failed!', err); }
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 50);
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 100);
});
},

Expand All @@ -562,7 +562,7 @@ module.exports = function(JZZ, PARAMS, DRIVER) {
setTimeout(function() { src.disconnect(); }, 10);
}
function onFail(err) { console.log('requestMIDIAccess failed!', err); }
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 50);
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 100);
});
},

Expand Down Expand Up @@ -634,7 +634,7 @@ module.exports = function(JZZ, PARAMS, DRIVER) {
setTimeout(call0, 10);
}
function onFail(err) { console.log('requestMIDIAccess failed!', err); }
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 50);
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 100);
});
},

Expand All @@ -661,7 +661,7 @@ module.exports = function(JZZ, PARAMS, DRIVER) {
});
}
function onFail(err) { console.log('requestMIDIAccess failed!', err); }
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 50);
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 100);
});
},

Expand All @@ -680,7 +680,7 @@ module.exports = function(JZZ, PARAMS, DRIVER) {
setTimeout(function() { dst.connect(); }, 10);
}
function onFail(err) { console.log('requestMIDIAccess failed!', err); }
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 50);
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 100);
});
},

Expand All @@ -705,7 +705,7 @@ module.exports = function(JZZ, PARAMS, DRIVER) {
setTimeout(function() { dst.disconnect(); }, 10);
}
function onFail(err) { console.log('requestMIDIAccess failed!', err); }
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 50);
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 100);
});
},

Expand Down Expand Up @@ -767,7 +767,7 @@ module.exports = function(JZZ, PARAMS, DRIVER) {
setTimeout(call0, 10);
}
function onFail(err) { console.log('requestMIDIAccess failed!', err); }
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 50);
setTimeout(function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }, 100);
});
},

Expand Down

0 comments on commit 4d46b0c

Please sign in to comment.