skip-if
v1.1.1
Published
skipIf(condition, name, test) for skipping jest
Downloads
409
Readme
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)
})