Files
openlayers/test/spec/ol/asserts.test.js
2016-08-12 10:53:47 -06:00

17 lines
310 B
JavaScript

goog.provide('ol.asserts.asserts.test');
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();
});
});
});