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

Side by Side Diff: chrome/test/data/webui/settings/settings_ui_browsertest.js

Issue 2760693002: WebUI: Disable all JS tests in MSAN, ASAN, and TSAN bots. (Closed)
Patch Set: more Created 3 years, 9 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 | « chrome/test/data/webui/settings/languages_page_browsertest.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 /** @fileoverview Suite of tests for the Settings layout. */ 5 /** @fileoverview Suite of tests for the Settings layout. */
6 6
7 GEN_INCLUDE(['settings_page_browsertest.js']); 7 GEN_INCLUDE(['settings_page_browsertest.js']);
8 8
9 /** 9 /**
10 * @constructor 10 * @constructor
11 * @extends {SettingsPageBrowserTest} 11 * @extends {SettingsPageBrowserTest}
12 */ 12 */
13 function SettingsUIBrowserTest() {} 13 function SettingsUIBrowserTest() {}
14 14
15 SettingsUIBrowserTest.prototype = { 15 SettingsUIBrowserTest.prototype = {
16 __proto__: SettingsPageBrowserTest.prototype, 16 __proto__: SettingsPageBrowserTest.prototype,
17 }; 17 };
18 18
19 // Times out on debug builders and may time out on memory bots because 19 // Times out on debug builders the Settings page can take several seconds to
20 // the Settings page can take several seconds to load in a Release build 20 // load in a Release build and several times that in a Debug build. See
21 // and several times that in a Debug build. See https://crbug.com/558434. 21 // https://crbug.com/558434.
22 GEN('#if defined(MEMORY_SANITIZER) || !defined(NDEBUG)'); 22 GEN('#if !defined(NDEBUG)');
23 GEN('#define MAYBE_All DISABLED_All'); 23 GEN('#define MAYBE_All DISABLED_All');
24 GEN('#else'); 24 GEN('#else');
25 GEN('#define MAYBE_All All'); 25 GEN('#define MAYBE_All All');
26 GEN('#endif'); 26 GEN('#endif');
27 27
28 TEST_F('SettingsUIBrowserTest', 'MAYBE_All', function() { 28 TEST_F('SettingsUIBrowserTest', 'MAYBE_All', function() {
29 suite('settings-ui', function() { 29 suite('settings-ui', function() {
30 var toolbar; 30 var toolbar;
31 var ui; 31 var ui;
32 32
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 assertEquals('foo ', urlParams.get('search')); 156 assertEquals('foo ', urlParams.get('search'));
157 157
158 searchField.setValue(' '); 158 searchField.setValue(' ');
159 urlParams = settings.getQueryParameters(); 159 urlParams = settings.getQueryParameters();
160 assertFalse(urlParams.has('search')); 160 assertFalse(urlParams.has('search'));
161 }); 161 });
162 }); 162 });
163 163
164 mocha.run(); 164 mocha.run();
165 }); 165 });
OLDNEW
« no previous file with comments | « chrome/test/data/webui/settings/languages_page_browsertest.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698