rtfeldman / seamless-immutable

Immutable data structures for JavaScript which are backwards-compatible with normal JS Arrays and Objects.
BSD 3-Clause "New" or "Revised" License
5.37k stars 195 forks source link

Why are IE tests failing? #245

Closed ryansukale closed 6 years ago

ryansukale commented 6 years ago

I see the semaphore UI but for some reason it does not show the logs.

We want to use this library, but we need to know whats failing before we can make this decision.

crudh commented 6 years ago

The tests for IE might be failing since the tests uses Promise which isn't available in IE. But the actual runtime code has no dependencies on Promise, so it should work in IE.

crudh commented 6 years ago

The tests have been fixed but we had to drop the browser tests because of changes at saucelabs. I hope they (or similar) can be brought back soon. But as far as I know the latest ones did show that everything was working in IE9+ as the README states.

ryansukale commented 6 years ago

Thanks for the update!