We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On Safari desktop (13.1.1), we're frequently experiencing the error below while calling the testQuality() function of Network Test.
We call testQuality(), but it sits waiting and later fails and returns this error.
Our code is below:
const testaroo = new NetworkTest(OT, conf, { audioOnly }) const qualityStats = [] const statsToCollect = 10 let iteration = 0 const qualityResults = await testaroo.testQuality(stats => { iteration += 1 onProgress({ wat: 'stats', iteration, statsToCollect, data: stats }) qualityStats.push(stats) if (qualityStats.length === statsToCollect) { testaroo.stop() return } }).catch(err => { console.log('OT network test error', err) testaroo.stop() })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On Safari desktop (13.1.1), we're frequently experiencing the error below while calling the testQuality() function of Network Test.
We call testQuality(), but it sits waiting and later fails and returns this error.
Our code is below:
The text was updated successfully, but these errors were encountered: