Launcher of Mobile Safari on MacOS
npm install karma-ios-simulator-launchernode --version.Make sure you have installed the latest XCode, which you can get from the AppStore.
``json`
npm install --save-dev karma-ios-simulator-launcher
js
// karma.conf.js
module.exports = function(config) {
config.set({
browsers: ['MobileSafari']
});
};
`You can CLI also launch it via the command line with:
`bash
karma start --browsers MobileSafari
``