This commit is contained in:
Anton Lavrevov 2025-03-20 14:27:08 -05:00
parent 1fb391d551
commit bdd43b239c

View File

@ -545,7 +545,7 @@ describe('Text', function () {
});
// ======================================================
it.only('multiline with ellipsis', function () {
it('multiline with ellipsis', function () {
var stage = addStage();
var layer = new Konva.Layer();
@ -569,11 +569,10 @@ describe('Text', function () {
assert.equal(text.textArr.length, 7);
assert.equal(text.textArr[6].text.slice(-1), '…');
console.log(ayer.getContext().getTrace(false, true));
if (isBrowser) {
assert.equal(
layer.getContext().getTrace(false, true),
"clearRect(0,0,578,200);save();transform(1,0,0,1,10,10);font=normal normal 14px Arial;textBaseline=middle;textAlign=left;translate(0,0);save();fillStyle=black;fillText(HEADING,18,7);restore();save();fillStyle=black;fillText(,50,21);restore();save();fillStyle=black;fillText(All the world's,7,35);restore();save();fillStyle=black;fillText(a stage,,25,49);restore();save();fillStyle=black;fillText(merely,28,63);restore();save();fillStyle=black;fillText(players. They,7,77);restore();save();fillStyle=black;fillText(have…,27,91);restore();restore();"
"clearRect(0,0,578,200);save();transform(1,0,0,1,10,10);font=normal normal 14px Arial;textBaseline=middle;textAlign=left;translate(0,0);save();fillStyle=black;fillText(HEADING,18,7);restore();save();fillStyle=black;fillText(,50,21);restore();save();fillStyle=black;fillText(All the world's a,1,35);restore();save();fillStyle=black;fillText(stage, merely,7,49);restore();save();fillStyle=black;fillText(players. They,7,63);restore();save();fillStyle=black;fillText(have theirrrrrrr,5,77);restore();save();fillStyle=black;fillText(exits and…,14,91);restore();restore();"
);
}
});