Special case opus mime detction
[mediawiki.git] / tests / qunit / suites / resources / jquery / jquery.color.test.js
blobca6a512fc54d8fa39307b8e6eff090f0daff2357
1 ( function ( $ ) {
2         QUnit.module( 'jquery.color', QUnit.newMwEnvironment() );
4         QUnit.test( 'animate', function ( assert ) {
5                 var done = assert.async(),
6                         $canvas = $( '<div>' ).css( 'background-color', '#fff' ).appendTo( '#qunit-fixture' );
8                 $canvas.animate( { 'background-color': '#000' }, 3 ).promise()
9                         .done( function () {
10                                 var endColors = $.colorUtil.getRGB( $canvas.css( 'background-color' ) );
11                                 assert.deepEqual( endColors, [ 0, 0, 0 ], 'end state' );
12                         } )
13                         .always( done );
14         } );
15 }( jQuery ) );