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

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

Issue 2007133006: Use svg icon to avoid lazy loading of Polymer elements for user pods (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update tests with regard to the latest changes while tests were disabled Created 4 years, 6 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
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 // Flaky timeout failures on all platforms; see https://crbug.com/613191. 40 TEST_F('UserManagerBrowserTest', 'UserManagerTest', function() {
41 TEST_F('UserManagerBrowserTest', 'DISABLED_UserManagerTest', function() {
42 // Disable 'pod-row' so it won't handle click events after we clear the body. 41 // Disable 'pod-row' so it won't handle click events after we clear the body.
43 $('pod-row').disabled = true; 42 $('pod-row').disabled = true;
44 43
45 user_manager.control_bar_tests.registerTests(); 44 user_manager.control_bar_tests.registerTests();
46 user_manager.create_profile_tests.registerTests(); 45 user_manager.create_profile_tests.registerTests();
47 user_manager.import_supervised_user_tests.registerTests(); 46 user_manager.import_supervised_user_tests.registerTests();
48 user_manager.user_manager_pages_tests.registerTests(); 47 user_manager.user_manager_pages_tests.registerTests();
49 mocha.run(); 48 mocha.run();
50 }); 49 });
OLDNEW
« no previous file with comments | « chrome/test/data/webui/md_user_manager/test_profile_browser_proxy.js ('k') | ui/login/account_picker/user_pod_row.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698