Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Unified Diff: appengine/config_service/ui/test/config-ui/config-ui_test.html

Issue 2923973003: Added base template for config ui. (Closed)
Patch Set: Better base template with clearer purpose Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..caa3bddaf0428d804f370eebe90059758355e74b
--- /dev/null
+++ b/appengine/config_service/ui/test/config-ui/config-ui_test.html
@@ -0,0 +1,28 @@
+<!doctype html>
Sergey Berezin 2017/06/08 00:05:59 Please add a license header.
+<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(cwpayton): write tests for the config ui.
+ });
+ </script>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698