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

Side by Side Diff: chrome/test/data/webui/md_user_manager/user_manager_browsertest.js

Issue 1996093002: Disabled flaky UserManagerBrowserTest.UserManagerTest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | 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 Tests for the Material Design user manager page. */ 5 /** @fileoverview Tests for the Material Design user manager page. */
6 6
7 /** @const {string} Path to root from chrome/test/data/webui/md_user_manager/ */ 7 /** @const {string} Path to root from chrome/test/data/webui/md_user_manager/ */
8 var ROOT_PATH = '../../../../../'; 8 var ROOT_PATH = '../../../../../';
9 9
10 // Polymer BrowserTest fixture. 10 // Polymer BrowserTest fixture.
(...skipping 19 matching lines...) Expand all
30 'create_profile_tests.js', 30 'create_profile_tests.js',
31 'import_supervised_user_tests.js', 31 'import_supervised_user_tests.js',
32 'test_profile_browser_proxy.js', 32 'test_profile_browser_proxy.js',
33 'user_manager_pages_tests.js', 33 'user_manager_pages_tests.js',
34 ]), 34 ]),
35 35
36 /** @override */ 36 /** @override */
37 runAccessibilityChecks: false, 37 runAccessibilityChecks: false,
38 }; 38 };
39 39
40 TEST_F('UserManagerBrowserTest', 'UserManagerTest', function() { 40 // Flaky timeout failures on all platforms; see https://crbug.com/613191.
41 TEST_F('UserManagerBrowserTest', 'DISABLED_UserManagerTest', function() {
41 // Disable 'pod-row' so it won't handle click events after we clear the body. 42 // Disable 'pod-row' so it won't handle click events after we clear the body.
42 $('pod-row').disabled = true; 43 $('pod-row').disabled = true;
43 44
44 user_manager.control_bar_tests.registerTests(); 45 user_manager.control_bar_tests.registerTests();
45 user_manager.create_profile_tests.registerTests(); 46 user_manager.create_profile_tests.registerTests();
46 user_manager.import_supervised_user_tests.registerTests(); 47 user_manager.import_supervised_user_tests.registerTests();
47 user_manager.user_manager_pages_tests.registerTests(); 48 user_manager.user_manager_pages_tests.registerTests();
48 mocha.run(); 49 mocha.run();
49 }); 50 });
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698