You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There seems to be a weird issue where IE8/9 executes async tests as one single test.
For example, the karma ui will go from 0/10 tests executed to 10/10 executed where as in IE10/11 it will execute them one by one. This is an issue if some individual tests takes long as each test is added together towards the browserNoActivityTimeout limit, which will cause karma to disconnect.
Some code to illustrate this:
describe('test', function() {
function test(done) {
setTimeout(function() { done(); }, 1000);
}
for(var i = 0; i < 11; i++) {
it('should pass', test);
}
});
There seems to be a weird issue where IE8/9 executes async tests as one single test.
For example, the karma ui will go from 0/10 tests executed to 10/10 executed where as in IE10/11 it will execute them one by one. This is an issue if some individual tests takes long as each test is added together towards the browserNoActivityTimeout limit, which will cause karma to disconnect.
Some code to illustrate this:
using
The text was updated successfully, but these errors were encountered: