gecko-dev/testing/web-platform/tests/bluetooth/server/device-same-object.https.html
Doug Turner 15acd5935f Bug 1523562 [wpt PR 14916] - WebBluetooth - clang-format wpt, a=testonly
Automatic update from web-platform-tests
WebBluetooth - clang-format wpt

Bug: None
Change-Id: Ib57901d2ad8d14b676affb1c51a34066e5079483
Reviewed-on: https://chromium-review.googlesource.com/c/1416970
Reviewed-by: Ovidio de Jesús Ruiz-Henríquez <odejesush@chromium.org>
Commit-Queue: Doug Turner <dougt@chromium.org>
Cr-Commit-Position: refs/heads/master@{#623865}

--

wpt-commits: 74bae78af4b95a2f0ca3a81df9c7fe3143f24bbc
wpt-pr: 14916
2019-02-07 21:50:36 +00:00

21 lines
830 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>
'use strict';
const test_desc = '[SameObject] test for BluetoothRemoteGATTServer\'s device.';
let device, fake_peripheral;
bluetooth_test(
() => getDiscoveredHealthThermometerDevice()
.then(_ => ({device, fake_peripheral} = _))
.then(
() => fake_peripheral.setNextGATTConnectionResponse(
{code: HCI_SUCCESS}))
.then(() => device.gatt.connect())
.then(gatt => assert_equals(gatt.device, gatt.device)),
test_desc);
</script>