only-changed-jest-watch-plugin
Version:
Jest watch plugin for running either only the modified test (for TDD), or tests of dependant modules
14 lines (11 loc) • 347 B
JavaScript
;
var padding = require('./padding.js');
var parsers = require('../parsers.js');
module.exports.definition = {
set: parsers.subImplicitSetter('padding', 'right', padding.isValid, padding.parser),
get: function () {
return this.getPropertyValue('padding-right');
},
enumerable: true,
configurable: true
};