30 lines
765 B
JavaScript
30 lines
765 B
JavaScript
defineSuite([
|
|
'Widgets/Timeline/Timeline',
|
|
'Core/Clock'
|
|
], function(
|
|
Timeline,
|
|
Clock) {
|
|
'use strict';
|
|
|
|
var container;
|
|
beforeEach(function(){
|
|
container = document.createElement('span');
|
|
container.id = 'container';
|
|
container.style.width = '1px';
|
|
container.style.height = '1px';
|
|
document.body.appendChild(container);
|
|
});
|
|
|
|
afterEach(function(){
|
|
document.body.removeChild(container);
|
|
});
|
|
|
|
it('sanity check', function() {
|
|
var timeline = new Timeline(container, new Clock());
|
|
timeline.resize();
|
|
expect(timeline.isDestroyed()).toEqual(false);
|
|
timeline.destroy();
|
|
expect(timeline.isDestroyed()).toEqual(true);
|
|
});
|
|
});
|