jest-canvas-mock
Version:
Mock a canvas in your jest tests.
27 lines (26 loc) • 1.44 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
class TextMetrics {
constructor(text) {
_defineProperty(this, "width", 0);
_defineProperty(this, "actualBoundingBoxLeft", 0);
_defineProperty(this, "actualBoundingBoxRight", 0);
_defineProperty(this, "fontBoundingBoxAscent", 0);
_defineProperty(this, "fontBoundingBoxDescent", 0);
_defineProperty(this, "actualBoundingBoxAscent", 0);
_defineProperty(this, "actualBoundingBoxDescent", 0);
_defineProperty(this, "emHeightAscent", 0);
_defineProperty(this, "emHeightDescent", 0);
_defineProperty(this, "hangingBaseline", 0);
_defineProperty(this, "alphabeticBaseline", 0);
_defineProperty(this, "ideographicBaseline", 0);
this.width = text.length;
}
}
exports.default = TextMetrics;