Files
openlayers/test/spec/ol/asserts.test.js
Tim Schaub 7f47883c48 Transformed
2017-12-12 06:53:18 -07:00

15 lines
297 B
JavaScript

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