| OLD | NEW |
| (Empty) | |
| 1 <!-- |
| 2 Copyright 2017 The LUCI Authors. All rights reserved. |
| 3 Use of this source code is governed under the Apache License, Version 2.0 |
| 4 that can be found in the LICENSE file. |
| 5 --> |
| 6 |
| 7 <!doctype html> |
| 8 <html lang="en"> |
| 9 <head> |
| 10 <meta charset="utf-8"> |
| 11 <meta name="viewport" content="width=device-width, minimum-scale=1, initial-
scale=1, user-scalable=yes"> |
| 12 |
| 13 <title>config-ui test</title> |
| 14 |
| 15 <script src="../../../webcomponentsjs/webcomponents-lite.js"></script> |
| 16 <script src="../../../web-component-tester/browser.js"></script> |
| 17 |
| 18 <link rel="import" href="../../src/config-ui/config-ui.html"> |
| 19 </head> |
| 20 <body> |
| 21 |
| 22 <test-fixture id="BasicTestFixture"> |
| 23 <template> |
| 24 <config-ui></config-ui> |
| 25 </template> |
| 26 </test-fixture> |
| 27 |
| 28 <script> |
| 29 suite('config-ui', function() { |
| 30 // TODO(cwpayton): write tests for the config ui. |
| 31 }); |
| 32 </script> |
| 33 </body> |
| 34 </html> |
| OLD | NEW |