Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
| 2 <html lang="en"> | |
| 3 <head> | |
| 4 <meta charset="utf-8"> | |
| 5 <meta name="viewport" content="width=device-width, minimum-scale=1, initial- scale=1, user-scalable=yes"> | |
| 6 | |
| 7 <title>config-ui test</title> | |
| 8 | |
| 9 <script src="../../../webcomponentsjs/webcomponents-lite.js"></script> | |
| 10 <script src="../../../web-component-tester/browser.js"></script> | |
| 11 | |
| 12 <link rel="import" href="../../src/config-ui/config-ui.html"> | |
| 13 </head> | |
| 14 <body> | |
| 15 | |
| 16 <test-fixture id="BasicTestFixture"> | |
| 17 <template> | |
| 18 <config-ui></config-ui> | |
| 19 </template> | |
| 20 </test-fixture> | |
| 21 | |
| 22 <script> | |
| 23 suite('config-ui', function() { | |
| 24 // TODO: write tests for the config ui. | |
|
Ryan Tseng
2017/06/07 22:25:02
TODO(username,username):
| |
| 25 }); | |
| 26 </script> | |
| 27 </body> | |
| 28 </html> | |
| OLD | NEW |