Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

// META: script=/resources/testdriver.js?feature=bidi
// META: script=/resources/testdriver-vendor.js
// META: script=/bluetooth/resources/bluetooth-test.js
// META: script=/bluetooth/resources/bluetooth-fake-devices.js
'use strict';
const test_desc = 'Device with empty name and no UUIDs nearby. Should be ' +
'found if acceptAllDevices is true.';
bluetooth_bidi_test(async () => {
let {device} = await setUpPreconnectedFakeDevice({
fakeDeviceOptions: {name: ''},
requestDeviceOptions: {acceptAllDevices: true}
});
assert_equals(device.name, '');
}, test_desc);