1. karma-safaritechpreview-launcher
A Karma plugin. Launcher for Safari Technology Preview.
karma-safaritechpreview-launcher
Package: karma-safaritechpreview-launcher
Created by: marcoscaceres
Last modified: Sun, 19 Jun 2022 08:04:31 GMT
Version: 2.0.2
License: MIT
Downloads: 69,523
Repository: https://github.com/marcoscaceres/karma-safaritechpreview-launcher

Install

npm install karma-safaritechpreview-launcher
yarn add karma-safaritechpreview-launcher

karma-safaritechpreview-launcher

A Karma plugin. Launcher for Safari Technology Preview.

Installation

Note, this plugin requires Node version 4.0 or higher.
You can check your node version by typing node --version.

 npm install karma-safaritechpreview-launcher --save-dev

Configuration

 // karma.conf.js
module.exports = function(config) {
  config.set({
    browsers: ['SafariTechPreview'],
    // optionally, if not using "detectBrowsers"
    plugins: [
      require('karma-safaritechpreview-launcher'), 
    ] 
 });
};

Alternatively, as a CLI argument:

 karma start --browsers SafariTechPreview

For more information on Karma see the homepage.

Attribution

This package is based on the original
karma-safari-launcher by
vojtajina.

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