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

Latest commit

 

History

History
39 lines (27 loc) · 1.28 KB

readme.md

File metadata and controls

39 lines (27 loc) · 1.28 KB

✅ 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
})