Do not announce robot account token before account ID is available
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / proxy / single / test.js
blob087d7c855271efaaa68719e962e630f562e2c9ff
1 // Copyright (c) 2011 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 // proxy api test
6 // browser_tests.exe --gtest_filter=ProxySettingsApiTest.ProxyFixedSingle
8 chrome.test.runTests([
9   // Verify that execution has started to make sure flaky timeouts are not
10   // caused by us.
11   function verifyTestsHaveStarted() {
12     chrome.test.succeed();
13   },
14   function setSingleProxy() {
15     var oneProxy = {
16       host: "127.0.0.1",
17       port: 100
18     };
20     var rules = {
21       singleProxy: oneProxy
22     };
24     var config = { rules: rules, mode: "fixed_servers" };
25     chrome.proxy.settings.set(
26         {'value': config},
27         chrome.test.callbackPass());
28   }
29 ]);