| 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 b8cb2065f2e456b40bf5252e06b319d23d5a7b4b..5fdd76530eb079422d9881aecd1a8c8d9c0d9b36 100644
|
| --- a/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| +++ b/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| @@ -67,6 +67,30 @@ TEST_F('CrSettingsBrowserTest', 'MAYBE_CrSettingsTest', function() {
|
| mocha.run();
|
| });
|
|
|
| +/**
|
| + * @constructor
|
| + * @extends {CrSettingsBrowserTest}
|
| + */
|
| +function CrSettingsAboutPageTest() {}
|
| +
|
| +CrSettingsAboutPageTest.prototype = {
|
| + __proto__: CrSettingsBrowserTest.prototype,
|
| +
|
| + /** @override */
|
| + browsePreload: 'chrome://md-settings/about_page/about_page.html',
|
| +
|
| + /** @override */
|
| + extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
|
| + 'test_browser_proxy.js',
|
| + 'about_page_tests.js',
|
| + ]),
|
| +};
|
| +
|
| +TEST_F('CrSettingsAboutPageTest', 'AboutPage', function() {
|
| + settings_about_page.registerTests();
|
| + mocha.run();
|
| +});
|
| +
|
| GEN('#if defined(OS_CHROMEOS)');
|
| /**
|
| * Test fixture for
|
|
|