To view this discussion on the web visit https://groups.google.com/d/msgid/polymer-dev/d2723c0e-c38e-49ab-8ff5-a24b013cdca6%40googlegroups.com.Follow Polymer on Google+: plus.google.com/107187849809354688692
---
You received this message because you are subscribed to the Google Groups "Polymer" group.
To unsubscribe from this group and stop receiving emails from it, send an email to polymer-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/polymer-dev/fa9c84f1-151c-4fb5-be23-9704ff71b727%40googlegroups.com.
I'm interested in this too.
I wonder if there's a solution by setting a for the test, so that the imports load from a different place from the real implementation, where the sub-components are instead mocked.
Follow Polymer on Google+: plus.google.com/107187849809354688692
---
You received this message because you are subscribed to a topic in the Google Groups "Polymer" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/polymer-dev/31W69ZE1Wng/unsubscribe.
To unsubscribe from this group and all its topics, send an email to polymer-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/polymer-dev/7c45489b-3cdd-4d3a-9ec1-b224d552f702%40googlegroups.com.
You received this message because you are subscribed to the Google Groups "Polymer" group.
To unsubscribe from this group and stop receiving emails from it, send an email to polymer-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/polymer-dev/CAGw__zGBzPcSV-%2Bgyx_UKtgAxwj5jH17xPx0RPObAFeLStmDtQ%40mail.gmail.com.
import MyElement from "../test-component";
customElements.define('my-element', MyElement);
if (module.hot) { module.hot.accept('../test-component', function() { console.log('Accepting the updated testComponent module!'); customElements.define('my-element', MyElement); });}