mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
18 lines
731 B
JavaScript
18 lines
731 B
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
MARIONETTE_TIMEOUT = 60000;
|
|
MARIONETTE_HEAD_JS = 'head.js';
|
|
|
|
startBluetoothTest(true, function testCaseMain(aAdapter) {
|
|
log("Checking adapter attributes ...");
|
|
|
|
is(aAdapter.name, EMULATOR_NAME, "adapter.name");
|
|
is(aAdapter.class, EMULATOR_CLASS, "adapter.class");
|
|
is(aAdapter.address, EMULATOR_ADDRESS, "adapter.address");
|
|
is(aAdapter.discovering, false, "adapter.discovering");
|
|
is(aAdapter.discoverable, false, "adapter.discoverable");
|
|
is(aAdapter.discoverableTimeout, 120, "adapter.discoverableTimeout");
|
|
});
|