Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4912)

Unified Diff: chrome/test/data/webui/settings/cr_settings_browsertest.js

Issue 2964293002: CrOS Settings: Add skeleton page for multidevice section. (Closed)
Patch Set: Minor cleanups Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 3e7c36609bafe14596ffca4cac499ac31cfaba5a..572cb56e3e11e2a0f8bc6d59e20c361d8331be37 100644
--- a/chrome/test/data/webui/settings/cr_settings_browsertest.js
+++ b/chrome/test/data/webui/settings/cr_settings_browsertest.js
@@ -1640,6 +1640,30 @@ TEST_F('CrSettingsPrintingPageTest', 'All', function() {
mocha.run();
});
+/**
+ * Test fixture for the multidevice settings page.
+ * @constructor
+ * @extends {CrSettingsBrowserTest}
+ */
+function CrSettingsMultidevicePageTest() {}
+
+CrSettingsMultidevicePageTest.prototype = {
+ __proto__: CrSettingsBrowserTest.prototype,
+
+ /** @override */
+ browsePreload: 'chrome://md-settings/multidevice_page/multidevice_page.html',
+
+ /** @override */
+ extraLibraries: CrSettingsBrowserTest.prototype.extraLibraries.concat([
+ ROOT_PATH + 'ui/webui/resources/js/assert.js',
dpapad 2017/07/06 01:26:50 I don't think this is necessary. All assert method
Oren Blasberg 2017/07/06 18:17:59 Done.
+ 'multidevice_page_tests.js',
+ ]),
+};
+
+TEST_F('CrSettingsMultidevicePageTest', 'All', function() {
+ mocha.run();
+});
+
GEN('#endif');
GEN('#if defined(OS_CHROMEOS)');

Powered by Google App Engine
This is Rietveld 408576698