1. karma-edge-launcher
A Karma plugin. Launcher for Microsoft Edge.
karma-edge-launcher
Package: karma-edge-launcher
Created by: karma-runner
Last modified: Sun, 19 Jun 2022 07:56:41 GMT
Version: 0.4.2
License: MIT
Downloads: 136,262
Repository: https://github.com/karma-runner/karma-edge-launcher

Install

npm install karma-edge-launcher
yarn add karma-edge-launcher

karma-edge-launcher

js-standard-style
npm version npm downloads

Build Status Build Status Dependency Status devDependency Status

Launcher for Microsoft Edge.

This is a fork of the launcher for Internet Explorer. Originally located at nickmccurdy/karma-edge-launcher.

Based on edge-launcher.

Status

In development, with pre-1.0 versions now available on the npm registry.

Installation

The easiest way is to keep karma-edge-launcher as a devDependency, by running

 npm install karma-edge-launcher --save-dev

Configuration

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

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

 karma start --browsers Edge

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