mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-26 05:44:12 +01:00
11 lines
260 B
JavaScript
11 lines
260 B
JavaScript
|
|
QUnit.module( "traversing" );
|
|
|
|
QUnit.test( ".andSelf", function( assert ) {
|
|
assert.expect( 1 );
|
|
|
|
expectWarning( assert, "andSelf", function() {
|
|
jQuery( "<div id='outer'><div id='inner'></div></div>" ).find( ".inner" ).andSelf();
|
|
} );
|
|
} );
|