mirror of
https://github.com/servo/servo.git
synced 2025-07-12 18:03:49 +01:00
19 lines
690 B
HTML
19 lines
690 B
HTML
<!DOCTYPE html>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/resources/testdriver.js"></script>
|
|
<script src="/resources/testdriver-vendor.js"></script>
|
|
<script src="/bluetooth/resources/bluetooth-helpers.js"></script>
|
|
<script>
|
|
const test_desc =
|
|
'A device with name and no UUIDs nearby. Should be found if ' +
|
|
'acceptAllDevices is true.';
|
|
const name = 'LE Device';
|
|
|
|
bluetooth_test(
|
|
() =>
|
|
setUpPreconnectedDevice({name: name})
|
|
.then(() => requestDeviceWithTrustedClick({acceptAllDevices: true}))
|
|
.then(device => assert_equals(device.name, name)),
|
|
test_desc);
|
|
</script>
|