Implement extension registration from an extension.json file
[mediawiki.git] / tests / qunit / suites / resources / jquery / jquery.color.test.js
blobc8e8ac70e0d8ae915d145ec2aede1fc71b543b2f
1 ( function ( $ ) {
2         QUnit.module( 'jquery.color', QUnit.newMwEnvironment( {
3                 setup: function () {
4                         this.clock = this.sandbox.useFakeTimers();
5                 }
6         } ) );
8         QUnit.test( 'animate', 1, function ( assert ) {
9                 var $canvas = $( '<div>' ).css( 'background-color', '#fff' );
11                 $canvas.animate( { backgroundColor: '#000' }, 10 ).promise().then( function () {
12                         var endColors = $.colorUtil.getRGB( $canvas.css( 'background-color' ) );
13                         assert.deepEqual( endColors, [0, 0, 0], 'end state' );
14                 } );
16                 this.clock.tick( 20 );
17         } );
18 }( jQuery ) );