Brightspace / polymer-siren-behaviors

utility library for shared behaviors for building siren resource based web-components
Apache License 2.0
0 stars 5 forks source link

set trackConsoleError to false #64

Closed awikkerink closed 4 years ago

awikkerink commented 4 years ago

Some background: tests in IE11 started failing in #63. Probably a package update from the cache being invalidated. Some guesses:

  1. Previously, the console.error was not being called until the test completed
  2. The trackConsoleError was added (probably not, since this was added in 2018)

console.error is being called on Chrome when testing locally, so my guess is 1. I suppose we always had this race condition here. Maybe the way the promise polyfill queues promise rejections changed?

I could either do a deep dive into this, or set trackConsoleError to false, or stub it.