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

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

Issue 2923973003: Added base template for config ui. (Closed)
Patch Set: Deleted bower_components, added gitignore, bowerrc, and Makefile 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 unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698