Skip to content

Commit d69b2bc

Browse files
committed
update test
1 parent 7089167 commit d69b2bc

File tree

1 file changed

+2
-18
lines changed

1 file changed

+2
-18
lines changed

test/html/publish-attributes.html

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -47,27 +47,11 @@
4747
document.addEventListener('WebComponentsReady', function() {
4848
//
4949
assert.deepEqual(
50-
XFoo.prototype.__published,
50+
XFoo.prototype.publish,
5151
{Foo: null, baz: null});
5252
assert.deepEqual(
53-
XBar.prototype.__published,
53+
XBar.prototype.publish,
5454
{Foo: null, baz: null, Bar: null});
55-
/*assert.deepEqual(
56-
XZot.prototype.__published,
57-
{Foo: null, baz: null, Bar: null, zot: 3});
58-
assert.deepEqual(
59-
XSquid.prototype.__published,
60-
{Foo: null, baz: 13, Bar: null, zot: 5, squid: 7});*/
61-
//
62-
/*
63-
assert.equal(
64-
Polymer.propertyForAttribute.call(XFoo.prototype, 'foo'),
65-
'Foo');
66-
XFoo.prototype.baz = true;
67-
assert.isUndefined(
68-
Polymer.propertyForAttribute.call(XFoo.prototype, 'splat'));
69-
*/
70-
//
7155
done();
7256
});
7357
</script>

0 commit comments

Comments
 (0)