Do not announce robot account token before account ID is available
[chromium-blink-merge.git] / chrome / test / data / extensions / platform_apps / apps_only / background.js
blob5eabb20a112e6365744604493372bfceb86077e7
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 chrome.test.runTests([
7   function NoAppWindows() {
8     if (typeof(chrome.app.window) == "undefined")
9       chrome.test.succeed();
10     else
11       chrome.test.fail("chrome.app.window is defined, but shouldn't be");
12   }
14 ]);