We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce70f83 commit 16d1e44Copy full SHA for 16d1e44
test/map/tools/DrawToolSpec.js
@@ -227,7 +227,9 @@ describe('DrawTool', function () {
227
expect(param.geometry instanceof maptalks.Polygon).to.be.ok();
228
var coordinates = param.geometry.getCoordinates()[0];
229
expect(coordinates.length === 5).to.be.ok();
230
- expect(coordinates[1].toArray()).to.be.eql([118.84675603637106, 32.046603663660306 ]);
+ if (!maptalks.Browser.ie) {
231
+ expect(coordinates[1].toArray()).to.be.eql([118.84675603637106, 32.046603663660306]);
232
+ }
233
done();
234
}
235
var drawTool = new maptalks.DrawTool({
0 commit comments