| 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 eb87a617d157f378b4409456296bb667a7d37615..f2ebd53bdc7f8e5b834002160241a942acceee2b 100644
|
| --- a/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| +++ b/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| @@ -1090,9 +1090,35 @@ TEST_F('CrSettingsPrintingPageTest', 'CupsPrintersTest', function() {
|
| });
|
|
|
| GEN('#endif');
|
| +
|
| GEN('#if defined(OS_CHROMEOS)');
|
|
|
| /**
|
| + * Test fixture for the Google Play Store (Arc++) page.
|
| + * @constructor
|
| + * @extends {CrSettingsBrowserTest}
|
| + */
|
| +function CrSettingsAndroidAppsPageTest() {}
|
| +
|
| +CrSettingsAndroidAppsPageTest.prototype = {
|
| + __proto__: CrSettingsBrowserTest.prototype,
|
| +
|
| + /** @override */
|
| + browsePreload:
|
| + 'chrome://md-settings/android_apps_page/android_apps_page.html',
|
| +
|
| + extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
|
| + ROOT_PATH + 'ui/webui/resources/js/promise_resolver.js',
|
| + 'test_browser_proxy.js',
|
| + 'android_apps_page_test.js',
|
| + ]),
|
| +};
|
| +
|
| +TEST_F('CrSettingsAndroidAppsPageTest', 'AndroidAppsPageTest', function() {
|
| + mocha.run();
|
| +});
|
| +
|
| +/**
|
| * Test fixture for the Date and Time page.
|
| * @constructor
|
| * @extends {CrSettingsBrowserTest}
|
|
|