OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 suite('Multidevice', function() { |
| 6 var multidevicePage = null; |
| 7 |
| 8 suiteSetup(function() { |
| 9 }); |
| 10 |
| 11 setup(function() { |
| 12 PolymerTest.clearBody(); |
| 13 multidevicePage = document.createElement('settings-multidevice-page'); |
| 14 assertTrue(!!multidevicePage); |
| 15 |
| 16 document.body.appendChild(multidevicePage); |
| 17 Polymer.dom.flush(); |
| 18 }); |
| 19 |
| 20 teardown(function() { |
| 21 multidevicePage.remove(); |
| 22 }); |
| 23 |
| 24 test('MainPage', function() { |
| 25 // TODO: Write test once the setting is actually functional. |
| 26 }); |
| 27 }); |
OLD | NEW |