Do not announce robot account token before account ID is available
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / serial / real_hardware / background.js
blob19d86d94dc4f3b0891aae9f220355007e510dee8
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 var testGetDevices = function() {
6   var onGetDevices = function(devices) {
7     // Any length is potentially valid, because we're on unknown hardware. But
8     // we are testing at least that the devices member was filled in, so it's
9     // still a somewhat meaningful test.
10     chrome.test.assertTrue(devices.length >= 0);
11     chrome.test.succeed();
12   }
14   chrome.serial.getDevices(onGetDevices);
17 // TODO(rockot): As infrastructure is built for testing device APIs in Chrome,
18 // we should obviously build real hardware tests here. For now, no attempt is
19 // made to open real devices on the test system.
21 var tests = [testGetDevices];
22 chrome.test.runTests(tests);