Always call done callback
This commit is contained in:
parent
b4c48664f8
commit
a4e04e6083
1 changed files with 6 additions and 3 deletions
|
@ -94,10 +94,13 @@ describe('chromium feature', function() {
|
||||||
|
|
||||||
it('can return labels of enumerated devices', function(done) {
|
it('can return labels of enumerated devices', function(done) {
|
||||||
navigator.mediaDevices.enumerateDevices().then((devices) => {
|
navigator.mediaDevices.enumerateDevices().then((devices) => {
|
||||||
const result = devices.some((device) => !!device.label);
|
const labels = devices.map((device) => device.label);
|
||||||
if (result)
|
const labelFound = labels.some((label) => !!label);
|
||||||
|
if (labelFound)
|
||||||
done();
|
done();
|
||||||
});
|
else
|
||||||
|
done('No device labels found: ' + JSON.stringify(labels));
|
||||||
|
}).catch(done);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue