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
In Polymer,the script is written in a component html,like:
<link rel="import"
href="bower_components/polymer/polymer.html">
<dom-module id="dom-element">
<template>
<p>I'm a DOM element. This is my local DOM!</p>
</template>
<script>
Polymer({
is: "dom-element"
});
</script>
</dom-module>
In Polymer,the script is written in a component html,like:
and the component can be used in page
How can I get the code coverage on the script in dom-element component
The text was updated successfully, but these errors were encountered: