You can use karma-parallel to split tests across multiple browser instances. It runs specifications in different browser instances and is very simple and easy to install:
npm i karma-parallel
and then add "parallel" to the list of frameworks in the karma.conf.js file
module.exports = function(config) {
config.set({
frameworks: ['parallel', 'jasmine']
});
};
karma-parallel
Disclosure: I am an author
source
share