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

Side by Side Diff: chrome/browser/ui/webui/settings/settings_advanced_browsertest.js

Issue 1460863003: Disable flaky MD Settings tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/settings/settings_basic_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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 * @extends {testing.Test} 6 * @extends {testing.Test}
7 * @constructor 7 * @constructor
8 */ 8 */
9 function SettingsAdvancedBrowserTest() {} 9 function SettingsAdvancedBrowserTest() {}
10 10
11 SettingsAdvancedBrowserTest.prototype = { 11 SettingsAdvancedBrowserTest.prototype = {
12 __proto__: testing.Test.prototype, 12 __proto__: testing.Test.prototype,
13 13
14 /** @override */ 14 /** @override */
15 browsePreload: 'chrome://md-settings/advanced', 15 browsePreload: 'chrome://md-settings/advanced',
16 16
17 /** 17 /**
18 * TODO(dpapad): Fix accessibility issues and enable checks. 18 * TODO(dpapad): Fix accessibility issues and enable checks.
19 * @override 19 * @override
20 */ 20 */
21 runAccessibilityChecks: false, 21 runAccessibilityChecks: false,
22 }; 22 };
23 23
24 TEST_F('SettingsAdvancedBrowserTest', 'NoConsoleErrors', function() { 24 // Flaky timeout failures on Linux Tests (dbg) and Win7 Tests (dbg); see
25 // https://crbug.com/558434.
26 TEST_F('SettingsAdvancedBrowserTest', 'DISABLED_NoConsoleErrors', function() {
25 assertEquals(this.browsePreload, document.location.href); 27 assertEquals(this.browsePreload, document.location.href);
26 // Nothing else to assert here. If there are errors in the console the test 28 // Nothing else to assert here. If there are errors in the console the test
27 // will automatically fail. 29 // will automatically fail.
28 }); 30 });
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/webui/settings/settings_basic_browsertest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698