| 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 7d8eaa6ae9ae1e6756a5524575bfb73d72d81662..7dcce60ed96aaa9eaf76d0fa1afa8fbd0a148e04 100644
|
| --- a/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| +++ b/chrome/test/data/webui/settings/cr_settings_browsertest.js
|
| @@ -498,6 +498,31 @@ TEST_F('CrSettingsDefaultBrowserTest', 'DefaultBrowserPage', function() {
|
| settings_default_browser.registerTests();
|
| mocha.run();
|
| });
|
| +
|
| +/**
|
| + * Test fixture for
|
| + * chrome/browser/resources/settings/people_page/import_data_dialog.html
|
| + * @constructor
|
| + * @extends {CrSettingsBrowserTest}
|
| + */
|
| +function CrSettingsImportDataDialogTest() {}
|
| +
|
| +CrSettingsImportDataDialogTest.prototype = {
|
| + __proto__: CrSettingsBrowserTest.prototype,
|
| +
|
| + /** @override */
|
| + browsePreload: 'chrome://md-settings/people_page/import_data_dialog.html',
|
| +
|
| + /** @override */
|
| + extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
|
| + 'test_browser_proxy.js',
|
| + 'import_data_dialog_test.js',
|
| + ]),
|
| +};
|
| +
|
| +TEST_F('CrSettingsImportDataDialogTest', 'All', function() {
|
| + mocha.run();
|
| +});
|
| GEN('#endif');
|
|
|
| /**
|
|
|