mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
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
21 lines
830 B
HTML
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>
|