Files
openlayers/test/spec/ol/asserts.test.js
2017-12-18 10:33:41 +01:00

15 lines
280 B
JavaScript

import {assert} from '../../../src/ol/asserts.js';
describe('ol.asserts', function() {
describe('ol.asserts.assert', function() {
it('throws an exception', function() {
expect(function() {
assert(false, 42);
}).to.throwException();
});
});
});