mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 05:06:09 +03:00
21 lines
433 B
JavaScript
21 lines
433 B
JavaScript
/* global module, asyncTest, $, ok, equal, notEqual, start, test, Util, testLog */
|
|
|
|
(function() {
|
|
var viewer;
|
|
|
|
module('TileSourceCollection', {
|
|
setup: function () {
|
|
testLog.reset();
|
|
},
|
|
teardown: function () {
|
|
}
|
|
});
|
|
|
|
// ----------
|
|
asyncTest('deprecation', function() {
|
|
Util.testDeprecation(OpenSeadragon, 'TileSourceCollection');
|
|
start();
|
|
});
|
|
|
|
})();
|