Files
openlayers/test/spec/ol/asserts.test.js
2017-08-17 15:16:58 -04:00

17 lines
270 B
JavaScript

goog.require('ol.asserts');
describe('ol.asserts', function() {
describe('ol.asserts.assert', function() {
it('throws an exception', function() {
expect(function() {
ol.asserts.assert(false, 42);
}).to.throwException();
});
});
});