1.1.1 • Published 6 years ago

skip-if v1.1.1

Weekly downloads
294
License
MIT
Repository
github
Last release
6 years ago

skipIf(condition, name, test)

A small helper to make dynamic decisions on whether to skip tests. This might be useful in situations where a test is only applicable for certain environments.

Installation

npm install --save-dev skip-if # or yarn add --dev skip-if

Usage

const skipIf = require('skip-if');

skipIf(process.platform === 'darwin', 'test only for macOs', () => {
  expect(true).toBe(true)
})

// currying is also possible
const skipIfMac = skipIf(process.platform === 'darwin')
skipIfMac('test only for macOs', () => {
  expect(true).toBe(true)
})