From 44bf0a69caeb58447febc0d7c26e395c93f70a38 Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Sat, 19 Jan 2019 10:39:26 -0500 Subject: [PATCH] remove old checks --- test/unit/Node-cache-test.js | 10 ++-------- test/unit/Shape-test.js | 8 ++------ test/unit/filters/Filter-test.js | 4 +--- test/unit/shapes/Blob-test.js | 4 +--- test/unit/shapes/RegularPolygon-test.js | 5 ++--- test/unit/shapes/Text-test.js | 14 ++++---------- 6 files changed, 12 insertions(+), 33 deletions(-) diff --git a/test/unit/Node-cache-test.js b/test/unit/Node-cache-test.js index fd6a7900..67e6ca2f 100644 --- a/test/unit/Node-cache-test.js +++ b/test/unit/Node-cache-test.js @@ -61,10 +61,8 @@ suite('Caching', function() { context.fillStyle = 'green'; context.fill(); - if (!window.isPhantomJS) { - compareLayerAndCanvas(layer, canvas, 200); - cloneAndCompareLayer(layer, 150); - } + compareLayerAndCanvas(layer, canvas, 200); + cloneAndCompareLayer(layer, 150); }); test('cache rectangle with fill and stroke', function() { @@ -178,9 +176,7 @@ suite('Caching', function() { layer.add(rect); stage.add(layer); - if (!window.isPhantomJS) { cloneAndCompareLayer(layer, 10); - } }); test('cache rectangle with fill and simple shadow', function() { @@ -390,9 +386,7 @@ suite('Caching', function() { layer.add(group); stage.add(layer); - if (!window.isPhantomJS) { cloneAndCompareLayer(layer, 200); - } }); test('cache group with several shape with transform', function() { diff --git a/test/unit/Shape-test.js b/test/unit/Shape-test.js index 7adcf1be..6ee48311 100644 --- a/test/unit/Shape-test.js +++ b/test/unit/Shape-test.js @@ -804,9 +804,7 @@ suite('Shape', function() { context.strokeStyle = 'black'; context.strokeText('Test TEXT', 50, 75); - if (!window.isPhantomJS) { - compareLayerAndCanvas(layer, canvas, 254); - } + compareLayerAndCanvas(layer, canvas, 254); }); // ====================================================== @@ -1440,9 +1438,7 @@ suite('Shape', function() { layer2.add(rect2); stage.add(layer2); - if (!window.isPhantomJS) { - compareLayers(layer1, layer2, 30); - } + compareLayers(layer1, layer2, 30); }); // ====================================================== diff --git a/test/unit/filters/Filter-test.js b/test/unit/filters/Filter-test.js index ff60e501..4bcada06 100644 --- a/test/unit/filters/Filter-test.js +++ b/test/unit/filters/Filter-test.js @@ -21,9 +21,7 @@ suite('Filter', function() { circle.blurRadius(0); layer.draw(); - if (!window.isPhantomJS) { - cloneAndCompareLayer(layer, 50); - } + cloneAndCompareLayer(layer, 50); Konva.pixelRatio = 1; }); }); diff --git a/test/unit/shapes/Blob-test.js b/test/unit/shapes/Blob-test.js index ae6faed2..a8cc07cf 100644 --- a/test/unit/shapes/Blob-test.js +++ b/test/unit/shapes/Blob-test.js @@ -111,8 +111,6 @@ suite('Blob', function() { layer.add(blob); stage.add(layer); - if (!window.isPhantomJS) { - cloneAndCompareLayer(layer, 100); - } + cloneAndCompareLayer(layer, 100); }); }); diff --git a/test/unit/shapes/RegularPolygon-test.js b/test/unit/shapes/RegularPolygon-test.js index 098ce5c2..c59cac59 100644 --- a/test/unit/shapes/RegularPolygon-test.js +++ b/test/unit/shapes/RegularPolygon-test.js @@ -142,9 +142,8 @@ suite('RegularPolygon', function() { height: 100, width: 100 }); - if (!window.isPhantomJS) { - cloneAndCompareLayer(layer, 254); - } + + cloneAndCompareLayer(layer, 254); Konva.pixelRatio = undefined; }); }); diff --git a/test/unit/shapes/Text-test.js b/test/unit/shapes/Text-test.js index efdeab87..fd7d0530 100644 --- a/test/unit/shapes/Text-test.js +++ b/test/unit/shapes/Text-test.js @@ -140,9 +140,7 @@ suite('Text', function() { layer2.add(text1.clone().cache({ pixelRatio: 2 })); stage.add(layer1, layer2); - if (!window.isPhantomJS) { - compareLayers(layer1, layer2, 220); - } + compareLayers(layer1, layer2, 220); }); test('text cache with fill and shadow and some scale', function() { @@ -745,7 +743,7 @@ suite('Text', function() { x: 10, fillLinearGradientStartPoint: { x: 0, y: 0 }, fillLinearGradientEndPoint: { x: 300, y: 0 }, - fillLinearGradientColorStops: [0, 'yellow', 0.5, 'yellow', 1, 'red'], + fillLinearGradientColorStops: [0, 'yellow', 1, 'red'], text: 'Text with gradient!!', draggable: true }); @@ -761,7 +759,7 @@ suite('Text', function() { var start = { x: 0, y: 0 }; var end = { x: 300, y: 0 }; - var colorStops = [0, 'yellow', 0.5, 'yellow', 1, 'red']; + var colorStops = [0, 'yellow', 1, 'red']; var grd = ctx.createLinearGradient(start.x, start.y, end.x, end.y); // build color stops @@ -772,11 +770,7 @@ suite('Text', function() { ctx.fillText(text.text(), text.x(), text.y() + text.fontSize() / 2); - // TODO: why this doesn't work in CI - // TODO: remove all isPhantomJS - if (!window.isPhantomJS) { - compareLayerAndCanvas(layer, canvas, 250); - } + compareLayerAndCanvas(layer, canvas, 250); // delete Konva.pixelRatio; });