blob: 2ed48eb5c68798e402193ca195c74c86dbf8909e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// 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);
|