mirror of
https://github.com/servo/servo.git
synced 2025-10-15 16:00:28 +01:00
19 lines
813 B
JavaScript
19 lines
813 B
JavaScript
// META: script=/resources/testdriver.js
|
|
// META: script=/resources/testdriver-vendor.js
|
|
// META: script=/common/gc.js
|
|
// META: script=/bluetooth/resources/bluetooth-test.js
|
|
// META: script=/bluetooth/resources/bluetooth-fake-devices.js
|
|
// Generated by //third_party/WebKit/LayoutTests/bluetooth/generate.py
|
|
'use strict';
|
|
const test_desc = 'Request for absent characteristics with UUID. ' +
|
|
'Reject with NotFoundError.';
|
|
|
|
bluetooth_test(() => getEmptyHealthThermometerService()
|
|
.then(({service}) => assert_promise_rejects_with_message(
|
|
service.getCharacteristic('battery_level'),
|
|
new DOMException(
|
|
`No Characteristics matching UUID ${battery_level.uuid} found ` +
|
|
`in Service with UUID ${health_thermometer.uuid}.`,
|
|
'NotFoundError'))),
|
|
test_desc);
|
|
|