openseadragon/test/modules/tilesourcecollection.js

20 lines
428 B
JavaScript
Raw Normal View History

2017-12-07 04:20:39 +03:00
/* global QUnit, Util, testLog */
2014-11-21 03:02:02 +03:00
(function() {
2017-12-07 04:20:39 +03:00
QUnit.module('TileSourceCollection', {
beforeEach: function () {
2014-11-21 03:02:02 +03:00
testLog.reset();
},
2017-12-07 04:20:39 +03:00
afterEach: function () {
2014-11-21 03:02:02 +03:00
}
});
// ----------
2017-12-07 04:20:39 +03:00
QUnit.test('deprecation', function(assert) {
var done = assert.async();
Util.testDeprecation(assert, OpenSeadragon, 'TileSourceCollection');
done();
2014-11-21 03:02:02 +03:00
});
})();