only-changed-jest-watch-plugin
Version:
Jest watch plugin for running either only the modified test (for TDD), or tests of dependant modules
15 lines (12 loc) • 344 B
JavaScript
;
var parseColor = require('../parsers').parseColor;
module.exports.definition = {
set: function (v) {
this._setProperty('-webkit-column-rule-color', parseColor(v));
},
get: function () {
return this.getPropertyValue('-webkit-column-rule-color');
},
enumerable: true,
configurable: true
};