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

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

Issue 2964293002: CrOS Settings: Add skeleton page for multidevice section. (Closed)
Patch Set: Sync and rebase Created 3 years, 5 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 1622 matching lines...) Expand 10 before | Expand all | Expand 10 after
1633 'test_util.js', 1633 'test_util.js',
1634 '../test_browser_proxy.js', 1634 '../test_browser_proxy.js',
1635 'cups_printer_page_tests.js', 1635 'cups_printer_page_tests.js',
1636 ]), 1636 ]),
1637 }; 1637 };
1638 1638
1639 TEST_F('CrSettingsPrintingPageTest', 'All', function() { 1639 TEST_F('CrSettingsPrintingPageTest', 'All', function() {
1640 mocha.run(); 1640 mocha.run();
1641 }); 1641 });
1642 1642
1643 /**
1644 * Test fixture for the multidevice settings page.
1645 * @constructor
1646 * @extends {CrSettingsBrowserTest}
1647 */
1648 function CrSettingsMultidevicePageTest() {}
1649
1650 CrSettingsMultidevicePageTest.prototype = {
1651 __proto__: CrSettingsBrowserTest.prototype,
1652
1653 /** @override */
1654 browsePreload: 'chrome://md-settings/multidevice_page/multidevice_page.html',
1655
1656 /** @override */
1657 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
1658 'multidevice_page_tests.js',
1659 ]),
1660 };
1661
1662 TEST_F('CrSettingsMultidevicePageTest', 'All', function() {
1663 mocha.run();
1664 });
1665
1643 GEN('#endif'); 1666 GEN('#endif');
1644 1667
1645 GEN('#if defined(OS_CHROMEOS)'); 1668 GEN('#if defined(OS_CHROMEOS)');
1646 1669
1647 /** 1670 /**
1648 * Test fixture for the Google Play Store (ARC) page. 1671 * Test fixture for the Google Play Store (ARC) page.
1649 * @constructor 1672 * @constructor
1650 * @extends {CrSettingsBrowserTest} 1673 * @extends {CrSettingsBrowserTest}
1651 */ 1674 */
1652 function CrSettingsAndroidAppsPageTest() {} 1675 function CrSettingsAndroidAppsPageTest() {}
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
1711 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([ 1734 extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
1712 '../test_browser_proxy.js', 1735 '../test_browser_proxy.js',
1713 'test_extension_control_browser_proxy.js', 1736 'test_extension_control_browser_proxy.js',
1714 'extension_controlled_indicator_tests.js', 1737 'extension_controlled_indicator_tests.js',
1715 ]), 1738 ]),
1716 }; 1739 };
1717 1740
1718 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() { 1741 TEST_F('CrSettingsExtensionControlledIndicatorTest', 'All', function() {
1719 mocha.run(); 1742 mocha.run();
1720 }); 1743 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698