summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/bluetooth/adapter/adapter-powered-off-getAvailability.https.window.js
blob: 1ffcd3bb096cebd80c34d5c57cadc8c00a128d2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// META: script=/resources/testdriver.js
// META: script=/resources/testdriver-vendor.js
// META: script=/bluetooth/resources/bluetooth-test.js
// META: script=/bluetooth/resources/bluetooth-fake-devices.js
'use strict';
const test_desc = 'getAvailability() resolves with true if the Bluetooth ' +
    'radio is powered off, but the platform that supports Bluetooth LE.';

bluetooth_test(async () => {
  await navigator.bluetooth.test.simulateCentral({state: 'powered-off'});
  let availability = await navigator.bluetooth.getAvailability();
  assert_true(
      availability,
      'getAvailability() resolves promise with true when adapter is powered ' +
          'off.');
}, test_desc);