@terrestris/ol-util
Version:
A set of helper classes for working with openLayers
21 lines (16 loc) • 399 B
text/typescript
/* eslint-env jest*/
import AnimateUtil from './AnimateUtil';
describe('AnimateUtil', () => {
describe('Basics', () => {
it('is defined', () => {
expect(AnimateUtil).toBeDefined();
});
});
describe('Static methods', () => {
describe('#moveFeature', () => {
it('is defined', () => {
expect(AnimateUtil.moveFeature).toBeDefined();
});
});
});
});