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

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

Issue 2402553002: MD Settings: Implementing modal popup/action menus. (Closed)
Patch Set: Fix test breakage caused by compiler suppress hack. Created 4 years, 2 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 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 /** @fileoverview Runs the Polymer Settings tests. */ 5 /** @fileoverview Runs the Polymer Settings tests. */
6 6
7 /** @const {string} Path to source root. */ 7 /** @const {string} Path to source root. */
8 var ROOT_PATH = '../../../../../'; 8 var ROOT_PATH = '../../../../../';
9 9
10 // Polymer BrowserTest fixture. 10 // Polymer BrowserTest fixture.
(...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 'test_privacy_page_browser_proxy.js', 856 'test_privacy_page_browser_proxy.js',
857 'metrics_reporting_tests.js', 857 'metrics_reporting_tests.js',
858 ]), 858 ]),
859 }; 859 };
860 860
861 TEST_F('CrSettingsMetricsReportingTest', 'All', function() { 861 TEST_F('CrSettingsMetricsReportingTest', 'All', function() {
862 mocha.run(); 862 mocha.run();
863 }); 863 });
864 864
865 GEN('#endif'); 865 GEN('#endif');
866
867 function CrSettingsActionMenuTest() {}
868
869 CrSettingsActionMenuTest.prototype = {
870 __proto__: CrSettingsBrowserTest.prototype,
871
872 /** @override */
873 browsePreload: 'chrome://md-settings/settings_action_menu.html',
874
875 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
876 'settings_action_menu_test.js',
877 ]),
878 };
879
880 TEST_F('CrSettingsActionMenuTest', 'All', function() {
881 mocha.run();
882 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698