mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-21 20:56:09 +03:00
20 lines
428 B
JavaScript
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();
|
|
});
|
|
|
|
})();
|