You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
892 B
30 lines
892 B
6 years ago
|
QUnit.test( 'jquery fail', function( assert ) {
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
var $ = window.jQuery;
|
||
|
var $images = $('#jquery-fail img');
|
||
|
var done = assert.async( 3 + $images.length );
|
||
|
|
||
|
$('#jquery-fail').imagesLoaded( function( instance ) {
|
||
|
assert.ok( true, 'callback triggered' );
|
||
|
assert.ok( instance instanceof imagesLoaded, 'instance instanceof imagesLoaded' );
|
||
|
done();
|
||
|
})
|
||
|
.fail( function( instance ) {
|
||
|
assert.ok( true, 'fail triggered' );
|
||
|
assert.ok( instance instanceof imagesLoaded, 'instance instanceof imagesLoaded' );
|
||
|
done();
|
||
|
})
|
||
|
.always( function( instance ) {
|
||
|
assert.ok( true, 'always triggered' );
|
||
|
assert.ok( instance instanceof imagesLoaded, 'instance instanceof imagesLoaded' );
|
||
|
done();
|
||
|
})
|
||
|
.progress( function(/* instance, image */) {
|
||
|
assert.ok( true, 'progress trigged');
|
||
|
done();
|
||
|
});
|
||
|
|
||
|
});
|