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

Unified Diff: polymer_1.2.3/bower_components/iron-meta/test/iron-meta.html

Issue 1581713003: [third_party] add polymer 1.2.3 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: 1.2.3 Created 4 years, 11 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: polymer_1.2.3/bower_components/iron-meta/test/iron-meta.html
diff --git a/polymer_1.0.4/bower_components/iron-meta/test/iron-meta.html b/polymer_1.2.3/bower_components/iron-meta/test/iron-meta.html
similarity index 95%
copy from polymer_1.0.4/bower_components/iron-meta/test/iron-meta.html
copy to polymer_1.2.3/bower_components/iron-meta/test/iron-meta.html
index c1a40282ebc8b85429fc38b5582f7fa6e56c652f..c4dc2500d27f959f535616fd5da1a7cead038f9a 100644
--- a/polymer_1.0.4/bower_components/iron-meta/test/iron-meta.html
+++ b/polymer_1.2.3/bower_components/iron-meta/test/iron-meta.html
@@ -179,6 +179,15 @@ suite('<iron-meta>', function () {
expect(registeredValue).to.be.equal(secondValue);
});
});
+
+ suite('singleton', function () {
+
+ test('only one ironmeta created', function () {
+ var first = Polymer.IronMeta.getIronMeta();
+ var second = Polymer.IronMeta.getIronMeta();
+ expect(first).to.be.equal(second);
+ });
+ });
});
</script>
« no previous file with comments | « polymer_1.2.3/bower_components/iron-meta/test/index.html ('k') | polymer_1.2.3/bower_components/iron-page-url/.bower.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698