Chromium Code Reviews| 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..6906ddbf53e248c7ad18a9fa3f33093beac32486 100644 |
| --- a/chrome/test/data/webui/settings/cr_settings_browsertest.js |
| +++ b/chrome/test/data/webui/settings/cr_settings_browsertest.js |
| @@ -908,6 +908,30 @@ 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([ |
| + ROOT_PATH + 'chrome/browser/resources/settings/search_settings.js', |
|
dpapad
2016/11/01 01:45:40
Even though this works locally, it fails on the bo
Dan Beam
2016/11/01 18:00:31
trying doing something like:
suiteSetup(function(
dpapad
2016/11/01 19:26:09
Added chrome/browser/resources/settings to the app
|
| + 'search_settings_test.js', |
| + ]), |
| +}; |
| + |
| +TEST_F('CrSettingsSearchTest', 'All', function() { |
| + mocha.run(); |
| +}); |
| + |
| +/** |
| * @constructor |
| * @extends {CrSettingsBrowserTest} |
| */ |