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

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

Issue 2480843003: change site-settings -> usb-device to use cr-action-menu instead of paper-menu (Closed)
Patch Set: add annotation to fix closure_compiler Created 4 years, 1 month 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 591 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 602
603 /** @override */ 603 /** @override */
604 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ 604 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
605 'site_details_tests.js', 605 'site_details_tests.js',
606 'site_details_permission_tests.js', 606 'site_details_permission_tests.js',
607 'site_list_tests.js', 607 'site_list_tests.js',
608 'site_settings_category_tests.js', 608 'site_settings_category_tests.js',
609 'test_browser_proxy.js', 609 'test_browser_proxy.js',
610 'test_site_settings_prefs_browser_proxy.js', 610 'test_site_settings_prefs_browser_proxy.js',
611 'zoom_levels_tests.js', 611 'zoom_levels_tests.js',
612 'usb_devices_tests.js'
612 ]), 613 ]),
613 }; 614 };
614 615
615 TEST_F('CrSettingsSiteSettingsTest', 'SiteSettings', function() { 616 TEST_F('CrSettingsSiteSettingsTest', 'SiteSettings', function() {
616 site_details.registerTests(); 617 site_details.registerTests();
617 site_details_permission.registerTests(); 618 site_details_permission.registerTests();
618 site_list.registerTests(); 619 site_list.registerTests();
619 site_settings_category.registerTests(); 620 site_settings_category.registerTests();
620 zoom_levels.registerTests(); 621 zoom_levels.registerTests();
622 usb_devices.registerTests();
621 623
622 mocha.run(); 624 mocha.run();
623 }); 625 });
624 626
625 GEN('#if defined(OS_CHROMEOS)'); 627 GEN('#if defined(OS_CHROMEOS)');
626 /** 628 /**
627 * Test fixture for device-page. 629 * Test fixture for device-page.
628 * @constructor 630 * @constructor
629 * @extends {CrSettingsBrowserTest} 631 * @extends {CrSettingsBrowserTest}
630 */ 632 */
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
1014 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ 1016 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
1015 'date_time_page_tests.js', 1017 'date_time_page_tests.js',
1016 ]), 1018 ]),
1017 }; 1019 };
1018 1020
1019 TEST_F('CrSettingsDateTimePageTest', 'DateTimePageTest', function() { 1021 TEST_F('CrSettingsDateTimePageTest', 'DateTimePageTest', function() {
1020 mocha.run(); 1022 mocha.run();
1021 }); 1023 });
1022 1024
1023 GEN('#endif'); 1025 GEN('#endif');
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698