blob: 7c21ca2e05b0d5d28035e6aad251f4994a57f0db [file] [log] [blame]
<!DOCTYPE html>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<script src="../../../resources/bluetooth/bluetooth-helpers.js"></script>
<script>
'use strict';
bluetooth_test(() => {
return getEmptyHealthThermometerService()
.then(({service}) => assert_promise_rejects_with_message(
service.getCharacteristics(),
new DOMException('No Characteristics found in service.',
'NotFoundError')))
}, 'Request for absent characteristics. Reject with NotFoundError.');
</script>