Skip to content
This repository has been archived by the owner on Mar 27, 2020. It is now read-only.

Latest commit

 

History

History

plugin-lib-karma

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

✅ plugin-lib-karma

npm linux windows coverage deps

Run tests using Karma.

Install

$ yarn add --dev @start/plugin-lib-karma
# or
$ npm install --save-dev @start/plugin-lib-karma

Usage

Signature

karma(options: {})

options

Karma config options.

Example

import karma from '@start/plugin-lib-karma'

export const task = () => karma({
  browsers: [ 'Chrome', 'Firefox' ],
  files: [
    'test/index.js'
  ],
  singleRun: true
})