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

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

Issue 2323693002: Site Settings Desktop: Implement Zoom Levels category. (Closed)
Patch Set: Address feedback Created 4 years, 3 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 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 browsePreload: 'chrome://md-settings/prefs/prefs.html', 462 browsePreload: 'chrome://md-settings/prefs/prefs.html',
463 463
464 /** @override */ 464 /** @override */
465 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ 465 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
466 'site_details_tests.js', 466 'site_details_tests.js',
467 'site_details_permission_tests.js', 467 'site_details_permission_tests.js',
468 'site_list_tests.js', 468 'site_list_tests.js',
469 'site_settings_category_tests.js', 469 'site_settings_category_tests.js',
470 'test_browser_proxy.js', 470 'test_browser_proxy.js',
471 'test_site_settings_prefs_browser_proxy.js', 471 'test_site_settings_prefs_browser_proxy.js',
472 'zoom_levels_tests.js',
472 ]), 473 ]),
473 }; 474 };
474 475
475 TEST_F('CrSettingsSiteSettingsTest', 'SiteSettings', function() { 476 TEST_F('CrSettingsSiteSettingsTest', 'SiteSettings', function() {
476 site_details.registerTests(); 477 site_details.registerTests();
477 site_details_permission.registerTests(); 478 site_details_permission.registerTests();
478 site_list.registerTests(); 479 site_list.registerTests();
479 site_settings_category.registerTests(); 480 site_settings_category.registerTests();
481 zoom_levels.registerTests();
480 482
481 mocha.run(); 483 mocha.run();
482 }); 484 });
483 485
484 GEN('#if defined(OS_CHROMEOS)'); 486 GEN('#if defined(OS_CHROMEOS)');
485 /** 487 /**
486 * Test fixture for device-page. 488 * Test fixture for device-page.
487 * @constructor 489 * @constructor
488 * @extends {CrSettingsBrowserTest} 490 * @extends {CrSettingsBrowserTest}
489 */ 491 */
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 'test_browser_proxy.js', 817 'test_browser_proxy.js',
816 'metrics_reporting_tests.js', 818 'metrics_reporting_tests.js',
817 ]), 819 ]),
818 }; 820 };
819 821
820 TEST_F('CrSettingsMetricsReportingTest', 'All', function() { 822 TEST_F('CrSettingsMetricsReportingTest', 'All', function() {
821 mocha.run(); 823 mocha.run();
822 }); 824 });
823 825
824 GEN('#endif'); 826 GEN('#endif');
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698