dkimbell13
dkimbell13
On the following page... [https://github.com/Microsoft/vstest-docs/blob/master/docs/analyze.md#coverage](url) There is only code examples for core1.1 Please update w/ examples for core2.0
Your events do not bubble up! ` document.querySelector(this.wz_class).dispatchEvent(new CustomEvent("wz.update", { detail: { "target": this.wz_class, "elem": document.querySelector(this.wz_class) } }));` could/should be something like... ` document.querySelector(this.wz_class).dispatchEvent(new CustomEvent("wz.update", { bubbles: true, //Enable bubbling...
It would be nice if I could select multiple string values (Using VS2017's new multi-cursor functionality) and convert them.