Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /bluetooth/requestDevice/acceptAllDevices/device-with-empty-name.https.window.html - WPT Dashboard Interop Dashboard
// META: script=/resources/testdriver.js
// 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_test(async () => {
let { device } = await setUpPreconnectedFakeDevice({
fakeDeviceOptions: {
name: ''
},
requestDeviceOptions: {
acceptAllDevices: true
}
});
assert_equals(device.name, '');
}, test_desc);