| 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 b803de8c1f99b2ea2cd36637d299a03670e74e4b..ef8c010a63664614554186e2028305e1226bb576 100644
|
| --- a/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| +++ b/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| @@ -908,6 +908,29 @@ TEST_F('CrSettingsMainPageTest', 'MAYBE_MainPage_All', function() {
|
| });
|
|
|
| /**
|
| + * Test fixture for chrome/browser/resources/settings/search_settings.js.
|
| + * @constructor
|
| + * @extends {CrSettingsBrowserTest}
|
| + */
|
| +function CrSettingsSearchTest() {}
|
| +
|
| +CrSettingsSearchTest.prototype = {
|
| + __proto__: CrSettingsBrowserTest.prototype,
|
| +
|
| + /** @override */
|
| + browsePreload: 'chrome://md-settings/settings_page/settings_section.html',
|
| +
|
| + /** @override */
|
| + extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
|
| + 'search_settings_test.js',
|
| + ]),
|
| +};
|
| +
|
| +TEST_F('CrSettingsSearchTest', 'All', function() {
|
| + mocha.run();
|
| +});
|
| +
|
| +/**
|
| * @constructor
|
| * @extends {CrSettingsBrowserTest}
|
| */
|
|
|