openseadragon/test/modules/tilesourcecollection.js
2018-01-02 08:32:45 -08:00

20 lines
428 B
JavaScript

/* global QUnit, Util, testLog */
(function() {
QUnit.module('TileSourceCollection', {
beforeEach: function () {
testLog.reset();
},
afterEach: function () {
}
});
// ----------
QUnit.test('deprecation', function(assert) {
var done = assert.async();
Util.testDeprecation(assert, OpenSeadragon, 'TileSourceCollection');
done();
});
})();