Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(598)

Side by Side Diff: chrome/browser/ui/webui/options/search_engine_manager_browsertest.js

Issue 2247033007: Disable tests failing on Win Tester bot. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/webui/sync_setup_browsertest.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * TestFixture for search engine manager WebUI testing. 6 * TestFixture for search engine manager WebUI testing.
7 * @extends {testing.Test} 7 * @extends {testing.Test}
8 * @constructor 8 * @constructor
9 */ 9 */
10 function SearchEngineManagerWebUITest() {} 10 function SearchEngineManagerWebUITest() {}
11 11
12 SearchEngineManagerWebUITest.prototype = { 12 SearchEngineManagerWebUITest.prototype = {
13 __proto__: testing.Test.prototype, 13 __proto__: testing.Test.prototype,
14 14
15 /** 15 /**
16 * Browse to the search engine manager. 16 * Browse to the search engine manager.
17 */ 17 */
18 browsePreload: 'chrome://settings-frame/searchEngines', 18 browsePreload: 'chrome://settings-frame/searchEngines',
19 }; 19 };
20 20
21 // See crosbug.com/22673 for OS_CHROMEOS 21 // See crosbug.com/22673 for OS_CHROMEOS
22 // See crbug.com/579666 for OS_LINUX 22 // See crbug.com/579666 for OS_LINUX
23 GEN('#if defined(OS_CHROMEOS) || defined(OS_LINUX)'); 23 // See crbug.com/638884 for OS_WIN
24 GEN('#if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_WIN)');
24 GEN('#define MAYBE_testOpenSearchEngineManager ' + 25 GEN('#define MAYBE_testOpenSearchEngineManager ' +
25 'DISABLED_testOpenSearchEngineManager'); 26 'DISABLED_testOpenSearchEngineManager');
26 GEN('#else'); 27 GEN('#else');
27 GEN('#define MAYBE_testOpenSearchEngineManager testOpenSearchEngineManager'); 28 GEN('#define MAYBE_testOpenSearchEngineManager testOpenSearchEngineManager');
28 GEN('#endif // defined(OS_CHROMEOS) || defined(OS_LINUX)'); 29 GEN('#endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_WIN)');
29 30
30 // Test opening the search engine manager has correct location. 31 // Test opening the search engine manager has correct location.
31 TEST_F('SearchEngineManagerWebUITest', 'MAYBE_testOpenSearchEngineManager', 32 TEST_F('SearchEngineManagerWebUITest', 'MAYBE_testOpenSearchEngineManager',
32 function() { 33 function() {
33 assertEquals(this.browsePreload, document.location.href); 34 assertEquals(this.browsePreload, document.location.href);
34 }); 35 });
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/webui/sync_setup_browsertest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698