| Index: chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| diff --git a/chrome/test/data/webui/settings/cr_settings_browsertest.js b/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| index a8a05156b58af4016eb9596cfa2e498ecb7aea3c..2ee706ccef8d5239f0acb63c432f9bf6e819408e 100644
|
| --- a/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| +++ b/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| @@ -1640,6 +1640,29 @@ TEST_F('CrSettingsPrintingPageTest', 'All', function() {
|
| mocha.run();
|
| });
|
|
|
| +/**
|
| + * Test fixture for the multidevice settings page.
|
| + * @constructor
|
| + * @extends {CrSettingsBrowserTest}
|
| + */
|
| +function CrSettingsMultidevicePageTest() {}
|
| +
|
| +CrSettingsMultidevicePageTest.prototype = {
|
| + __proto__: CrSettingsBrowserTest.prototype,
|
| +
|
| + /** @override */
|
| + browsePreload: 'chrome://md-settings/multidevice_page/multidevice_page.html',
|
| +
|
| + /** @override */
|
| + extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
|
| + 'multidevice_page_tests.js',
|
| + ]),
|
| +};
|
| +
|
| +TEST_F('CrSettingsMultidevicePageTest', 'All', function() {
|
| + mocha.run();
|
| +});
|
| +
|
| GEN('#endif');
|
|
|
| GEN('#if defined(OS_CHROMEOS)');
|
|
|