UNPKG

only-changed-jest-watch-plugin

Version:

Jest watch plugin for running either only the modified test (for TDD), or tests of dependant modules

18 lines (15 loc) 385 B
'use strict'; var isValid = require('./borderWidth').isValid; module.exports.isValid = isValid; module.exports.definition = { set: function (v) { if (isValid(v)) { this._setProperty('border-top-width', v); } }, get: function () { return this.getPropertyValue('border-top-width'); }, enumerable: true, configurable: true };