1. karma-safari-launcher
A Karma plugin. Launcher for Safari.
karma-safari-launcher
Package: karma-safari-launcher
Created by: karma-runner
Last modified: Sun, 19 Jun 2022 08:04:29 GMT
Version: 1.0.0
License: MIT
Downloads: 410,900
Repository: https://github.com/karma-runner/karma-safari-launcher

Install

npm install karma-safari-launcher
yarn add karma-safari-launcher

karma-safari-launcher

Launcher for Safari.

Installation

The easiest way is to keep karma-safari-launcher as a devDependency in your package.json.

 {
  "devDependencies": {
    "karma": "~0.10",
    "karma-safari-launcher": "~0.1"
  }
}

You can simple do it by:

 npm install karma-safari-launcher --save-dev

Configuration

 // karma.conf.js
module.exports = function(config) {
  config.set({
    browsers: ['Safari']
  });
};

You can pass list of browsers as a CLI argument too:

 karma start --browsers Safari

For more information on Karma see the homepage.

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin