karma-browserstack-browserslist-launchers
Integrates with karma-browserstack-launcher and automatically configures karma browsers
and launchers for them based on your browserslist config.
Configuration
You need both karma-browserstack-browserslist-launchers
and karma-browserstack-launcher
to be installed.
-
.browserslistrc (just an example)
last 2 Chrome major versions last 2 Firefox major versions last 2 Safari major versions last 2 Edge major versions
-
karma.conf.js
module {// ...// add to frameworksconfigframeworks = 'browserStackBrowserslistLaunchers';// configure karma-browserstack-launcherconfigbrowserStack =username: processenvBROWSERSTACK_USERNAMEaccessKey: processenvBROWSERSTACK_ACCESS_KEYproject: 'my-project';// ...};
Latest browser versions
Your browserslist config is always processed using browserslist NPM package which contains data about versions of different browsers.
To stay up-to-date and have latest versions of everything it is recommended to depend on it directly (npm install browserslist --save-dev
) and update it from time to time.
Be aware though that BrowserStack itself might not have a certain version of a browser available.
Processing of capabilities
After matching BrowserStack capabilities with browserslist config there are too many available capabilities, because each browser version might be available on many OS, e.g. Chrome 76 can be tested on Windows 7, 8, 10 and multiple version of macOS. This is just too much to run and is not needed in the majority of cases. Therefore by default the capabilities are filtered and each unique browser version will be tested only on one OS.
If you don't like the default strategy you can hook into the process and apply a different filtering like this:
-
karma.conf.js
module {// ...configbrowserStackBrowserslistLaunchers ={// you can filter the array herereturn capabilities;};// ...};