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
As far as I've read in the docs, Polymer allows you to specify a dependency multiple times, and it will just sort it out - so your index.html could have the following:
main/components/a/a.html?break and main/components/a/a.html are different URLs that could produce completely different resources from the server. One can imagine components/mine?x-foo and components/main?x-bar that produce separate elements.
That tells karma that b.html should be served, but do not include it in context.html or debug.html.
In general, b.html and b.html?something are considered completely different resources. In karma's case, it seems like maybe cache busting should be disabled for HTML Imports. Filed karma-runner/karma#1073
As far as I've read in the docs, Polymer allows you to specify a dependency multiple times, and it will just sort it out - so your index.html could have the following:
Where a is
and b is
This all works great. However, add query string parameters to the elements, and everything breaks:
Now with the additional query string you get the following breakage:
The text was updated successfully, but these errors were encountered: