-
Notifications
You must be signed in to change notification settings - Fork 943
Fix SauceLabs tests #1920
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix SauceLabs tests #1920
Conversation
performance also doesn't work in IE because of a syntax error I don't know what is causing it yet. |
Thanks for figuring all this out! Sounds like there's nothing for me to do. 😄 |
754989d
to
c42239e
Compare
const TYPED_ARRAY_REPRESENTATION = new TextEncoder().encode('hello world'); | ||
const BASE_64_REPRESENTATION = btoa('hello world'); | ||
const str = 'hello world'; | ||
const TYPED_ARRAY_REPRESENTATION = new Uint8Array(str.length); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed so it works in IE11 without TextEncoder polyfill, though there still are many tests failing in IE11 (due to indexedDB?). Is installations designed to work in IE11 ? @mmermerkaya
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mmermerkaya ping
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Installations should work in IE11. I have not received any bug reports about it not working in IE11.
* stub storage differently so tests work in Firefox and IE * [AUTOMATED]: Prettier Code Styling * rewrite test setup * [AUTOMATED]: Prettier Code Styling
2f2fe61
to
29c054b
Compare
The PR fixes the saucelabs testing infrastructure and unit tests for some SDKs. |
No description provided.