diff options
Diffstat (limited to 'testing/web-platform/tests/bluetooth/adapter/adapter-powered-off-getAvailability.https.window.js')
-rw-r--r-- | testing/web-platform/tests/bluetooth/adapter/adapter-powered-off-getAvailability.https.window.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/bluetooth/adapter/adapter-powered-off-getAvailability.https.window.js b/testing/web-platform/tests/bluetooth/adapter/adapter-powered-off-getAvailability.https.window.js new file mode 100644 index 0000000000..1ffcd3bb09 --- /dev/null +++ b/testing/web-platform/tests/bluetooth/adapter/adapter-powered-off-getAvailability.https.window.js @@ -0,0 +1,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); |