From 24ca534c54d6024dd38c3878c516202d09890813 Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Wed, 13 Nov 2013 14:01:27 +0100 Subject: [PATCH] Use skip instead of xit to mark failing tests --- test/spec/ol/geom/polygon.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/spec/ol/geom/polygon.test.js b/test/spec/ol/geom/polygon.test.js index ec5d5234b6..0be8b0734a 100644 --- a/test/spec/ol/geom/polygon.test.js +++ b/test/spec/ol/geom/polygon.test.js @@ -1,4 +1,4 @@ -// FIXME why do the xit tests below fail? I don't understand! +// FIXME why do the skip tests below fail? I don't understand! goog.provide('ol.test.geom.Polygon'); @@ -283,7 +283,7 @@ describe('ol.geom.Polygon', function() { expect(polygon.getFlatCoordinates()).to.eql(flatCoordinates); }); - xit('does not contain outside coordinates', function() { + it.skip('does not contain outside coordinates', function() { expect(polygon.containsCoordinate(outsideOuter)).to.be(false); }); @@ -296,7 +296,7 @@ describe('ol.geom.Polygon', function() { expect(polygon.containsCoordinate(insideInner2)).to.be(false); }); - xit('fails in strange ways', function() { + it.skip('fails in strange ways', function() { expect(polygon.containsCoordinate([0, 0])).to.be(false); });