Remove throw check

This commit is contained in:
Francisco López 2017-05-19 13:51:27 +02:00
parent ea880ccf7b
commit b051ae284e

View File

@ -135,12 +135,7 @@ describe('RendererJS Strict Mode', function() {
));
it('should pass if a feature is not supported but strict is turned off', function () {
assert.doesNotThrow(
function () {
var RendererJS = new carto.RendererJS({reference: reference, mapnik_version: '1.0.0', strict: false });
var shader = RendererJS.render(style);
}
);
new carto.RendererJS({reference: reference, mapnik_version: '1.0.0', strict: false })
});
it('should pass if a feature is supported and strict is turned on', function () {