Chromium Code Reviews| Index: appengine/config_service/ui/test/config-ui/config-ui_test.html |
| diff --git a/appengine/config_service/ui/test/config-ui/config-ui_test.html b/appengine/config_service/ui/test/config-ui/config-ui_test.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..eb04dde1795cb08d3385638234341c5f44ffb0f0 |
| --- /dev/null |
| +++ b/appengine/config_service/ui/test/config-ui/config-ui_test.html |
| @@ -0,0 +1,28 @@ |
| +<!doctype html> |
| +<html lang="en"> |
| + <head> |
| + <meta charset="utf-8"> |
| + <meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes"> |
| + |
| + <title>config-ui test</title> |
| + |
| + <script src="../../../webcomponentsjs/webcomponents-lite.js"></script> |
| + <script src="../../../web-component-tester/browser.js"></script> |
| + |
| + <link rel="import" href="../../src/config-ui/config-ui.html"> |
| + </head> |
| + <body> |
| + |
| + <test-fixture id="BasicTestFixture"> |
| + <template> |
| + <config-ui></config-ui> |
| + </template> |
| + </test-fixture> |
| + |
| + <script> |
| + suite('config-ui', function() { |
| + // TODO: write tests for the config ui. |
|
Ryan Tseng
2017/06/07 22:25:02
TODO(username,username):
|
| + }); |
| + </script> |
| + </body> |
| +</html> |