You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
el.setAttribute(camelName,'pretended to be camel');
47
+
48
+
root.appendChild(el);
49
+
document.body.appendChild(root);
50
+
51
+
assert.equal(
52
+
root.innerHTML,
53
+
`<x-prop-name-transform ${kebabName}="11/11/2011" ${lowerName}="pretended to be camel"><span>11/11/2011 pretended to be camel 11/11/2011</span></x-prop-name-transform>`
54
+
);
55
+
56
+
el.setAttribute(kebabName,'01/01/2001');
57
+
58
+
assert.equal(
59
+
root.innerHTML,
60
+
`<x-prop-name-transform ${kebabName}="01/01/2001" ${lowerName}="pretended to be camel"><span>01/01/2001 pretended to be camel 01/01/2001</span></x-prop-name-transform>`
0 commit comments