Chromium Code Reviews| Index: appengine/config_service/ui/test/config-ui/config-set_test.html |
| diff --git a/appengine/config_service/ui/test/config-ui/config-set_test.html b/appengine/config_service/ui/test/config-ui/config-set_test.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..052e4947eba7aed43722223ba85bd4ae0f0e5a1e |
| --- /dev/null |
| +++ b/appengine/config_service/ui/test/config-ui/config-set_test.html |
| @@ -0,0 +1,39 @@ |
| +<!-- |
| + Copyright 2017 The LUCI Authors. All rights reserved. |
| + Use of this source code is governed under the Apache License, Version 2.0 |
| + that can be found in the LICENSE file. |
| +--> |
| + |
| +<!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-set test</title> |
| + |
| + <script src="../../bower_components/webcomponentsjs/webcomponents-lite.js"></script> |
| + <script src="../../bower_components/web-component-tester/browser.js"></script> |
| + |
| + <link rel="import" href="../../src/config-ui/config-set.html"> |
| + </head> |
| + <body> |
| + |
| + <test-fixture id="config-set-pageTestFixture"> |
| + <template> |
| + <config-set></config-set> |
| + </template> |
| + </test-fixture> |
| + |
| + <script> |
| + suite('<config-set>', function() { |
| + // TODO(ayanaadylova@): write tests for the config-set element. |
|
Sergey Berezin
2017/06/26 23:16:26
Let's actually write the tests in this CL.
ayanaadylova
2017/06/28 15:37:28
Done.
|
| + var config_set; |
| + setup(function() { |
| + config_set = fixture('config-set-pageTestFixture'); |
| + }); |
| + |
| + }); |
| + </script> |
| + </body> |
| +</html> |