Index: chrome/test/data/webui/settings/multidevice_page_tests.js |
diff --git a/chrome/test/data/webui/settings/multidevice_page_tests.js b/chrome/test/data/webui/settings/multidevice_page_tests.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6a0f7aa53b6766284e59b35d469a931229907aea |
--- /dev/null |
+++ b/chrome/test/data/webui/settings/multidevice_page_tests.js |
@@ -0,0 +1,27 @@ |
+// Copyright 2017 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+suite('Multidevice', function() { |
+ var multidevicePage = null; |
+ |
+ suiteSetup(function() { |
+ }); |
+ |
+ setup(function() { |
+ PolymerTest.clearBody(); |
+ multidevicePage = document.createElement('settings-multidevice-page'); |
+ assertTrue(!!multidevicePage); |
+ |
+ document.body.appendChild(multidevicePage); |
+ Polymer.dom.flush(); |
+ }); |
+ |
+ teardown(function() { |
+ multidevicePage.remove(); |
+ }); |
+ |
+ test('MainPage', function() { |
+ // TODO: Write test once the setting is actually functional. |
+ }); |
+}); |