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

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

Issue 2673563002: MD Settings: Remove unnecessary importHtml() calls in site-settings tests. (Closed)
Patch Set: More Created 3 years, 10 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 632 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 * Test fixture for chrome/browser/resources/settings/site_settings/. 643 * Test fixture for chrome/browser/resources/settings/site_settings/.
644 * @constructor 644 * @constructor
645 * @extends {CrSettingsBrowserTest} 645 * @extends {CrSettingsBrowserTest}
646 */ 646 */
647 function CrSettingsSiteSettingsTest() {} 647 function CrSettingsSiteSettingsTest() {}
648 648
649 CrSettingsSiteSettingsTest.prototype = { 649 CrSettingsSiteSettingsTest.prototype = {
650 __proto__: CrSettingsBrowserTest.prototype, 650 __proto__: CrSettingsBrowserTest.prototype,
651 651
652 /** @override */ 652 /** @override */
653 browsePreload: 'chrome://md-settings/prefs/prefs.html', 653 browsePreload: 'chrome://md-settings/privacy_page/privacy_page.html',
654 654
655 /** @override */ 655 /** @override */
656 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ 656 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
657 'category_default_setting_tests.js', 657 'category_default_setting_tests.js',
658 'category_setting_exceptions_tests.js', 658 'category_setting_exceptions_tests.js',
659 'site_details_tests.js', 659 'site_details_tests.js',
660 'site_details_permission_tests.js', 660 'site_details_permission_tests.js',
661 'site_list_tests.js', 661 'site_list_tests.js',
662 'test_browser_proxy.js', 662 'test_browser_proxy.js',
663 'test_site_settings_prefs_browser_proxy.js', 663 'test_site_settings_prefs_browser_proxy.js',
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
1198 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ 1198 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
1199 'test_browser_proxy.js', 1199 'test_browser_proxy.js',
1200 'test_extension_control_browser_proxy.js', 1200 'test_extension_control_browser_proxy.js',
1201 'extension_controlled_indicator_tests.js', 1201 'extension_controlled_indicator_tests.js',
1202 ]), 1202 ]),
1203 }; 1203 };
1204 1204
1205 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { 1205 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() {
1206 mocha.run(); 1206 mocha.run();
1207 }); 1207 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698