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

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

Issue 2912543002: Disable UserManagerBrowserTest.UserManageTest on Win (Timedout) (Closed)
Patch Set: Created 3 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
« 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 GEN('#if defined(OS_WIN)');
41 GEN('#define MAYBE_UserManagerTest DISABLED_UserManagerTest');
42 GEN('#else');
43 GEN('#define MAYBE_UserManagerTest UserManagerTest');
44 GEN('#endif');
45 TEST_F('UserManagerBrowserTest', 'MAYBE_UserManagerTest', function() {
41 user_manager.control_bar_tests.registerTests(); 46 user_manager.control_bar_tests.registerTests();
42 user_manager.create_profile_tests.registerTests(); 47 user_manager.create_profile_tests.registerTests();
43 user_manager.import_supervised_user_tests.registerTests(); 48 user_manager.import_supervised_user_tests.registerTests();
44 user_manager.user_manager_pages_tests.registerTests(); 49 user_manager.user_manager_pages_tests.registerTests();
45 mocha.run(); 50 mocha.run();
46 }); 51 });
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