"test/data/testrunner.js",
"test/unit/animation.js",
"test/unit/basic.js",
+ "test/unit/support.js",
"test/unit/tween.js",
"test/unit/wrap.js"
],
};
assert.ok( okValue[ color ], "color was not reset (" + color + ")" );
- assert.deepEqual( jQuery.extend( {}, support ), computedSupport, "Same support properties" );
+ assert.deepEqual( jQuery.extend( {}, support ), computedSupport,
+ "Same support properties" );
}
);
}
var done = assert.async();
assert.expect( 2 );
- assert.deepEqual( jQuery.extend( {}, support ), computedSupport, "No violations of CSP polices" );
+ assert.deepEqual( jQuery.extend( {}, support ), computedSupport,
+ "No violations of CSP polices" );
supportjQuery.get( "data/support/csp.log" ).done( function( data ) {
assert.equal( data, "", "No log request should be sent" );
assert.ok( true, "no ajax; skipping jQuery.support['" + i + "']" );
}
}
- });
+ } );
} )();