Skip to content

Commit

Permalink
fix: fix running tests in IE9
Browse files Browse the repository at this point in the history
So the symptom is that after Karma page is loaded in IE9 the tests don't run and Karma is stuck at the "starting" step. Reloading the page once or twice makes IE9 connect to the server and tests pass successfully.

After an "exciting" debugging session I figured out that the problem is that on the first load (and sometimes after the page reload) [`io` variable](https://github.com/karma-runner/karma/blob/026fff870913fb6cd2858dd962935dc74c92b725/client/main.js#L14), which should be set by the `socket.io.js` script is undefined. It looks like IE9 silently stops executing `socket.io.js` script somewhere midway and switches to the next script causing the `io` variable to be undefined. I assume it hits some limit or threshold or whatnot. Couldn't find much information on the Internet, besides people experiencing similar issues when loading e.g. unminified jQuery and their own code firing before the `$` variable is available. No good solutions found.

Checking the `socket.io.js` contents, I have noticed that v2 served the minified client script on that path, while v3 now serves the unminified code. Presumably the huge script size is what causing IE9 to choke. Switching back to the minified socket.io client bundle allows tests to pass in IE9.

With the fix, tests passed 5 times in a row, while without it they fail every time, so I assume it does resolve the problem.

Fixes #3665
  • Loading branch information
devoto13 committed Mar 28, 2021
1 parent 026fff8 commit 4e0e507
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion static/client.html
Expand Up @@ -109,7 +109,7 @@ <h1 id="title">Karma - starting</h1>

<iframe id="context" src="about:blank" width="100%" height="100%"></iframe>

<script src="socket.io/socket.io.js"></script>
<script src="socket.io/socket.io.min.js"></script>
<script src="karma.js"></script>
</body>
</html>
7 changes: 7 additions & 0 deletions test/client/karma.conf.js
Expand Up @@ -27,6 +27,13 @@ const launchers = {
browser_version: '11.0',
os: 'Windows',
os_version: '10'
},
bs_ie9: {
base: 'BrowserStack',
browser: 'IE',
browser_version: '9.0',
os: 'Windows',
os_version: '7'
}
}

Expand Down

0 comments on commit 4e0e507

Please sign in to comment.