@@ -28,6 +28,7 @@ asyncTest( "focus", function() {
2828} ) ;
2929
3030test ( "zIndex" , function ( ) {
31+ expect ( 7 ) ;
3132 var el = $ ( "#zIndexAutoWithParent" ) ,
3233 parent = el . parent ( ) ;
3334 equal ( el . zIndex ( ) , 100 , "zIndex traverses up to find value" ) ;
@@ -46,6 +47,7 @@ test( "zIndex", function() {
4647} ) ;
4748
4849test ( "innerWidth - getter" , function ( ) {
50+ expect ( 2 ) ;
4951 var el = $ ( "#dimensions" ) ;
5052
5153 equal ( el . innerWidth ( ) , 122 , "getter passthru" ) ;
@@ -54,6 +56,7 @@ test( "innerWidth - getter", function() {
5456} ) ;
5557
5658test ( "innerWidth - setter" , function ( ) {
59+ expect ( 2 ) ;
5760 var el = $ ( "#dimensions" ) ;
5861
5962 el . innerWidth ( 120 ) ;
@@ -64,6 +67,7 @@ test( "innerWidth - setter", function() {
6467} ) ;
6568
6669test ( "innerHeight - getter" , function ( ) {
70+ expect ( 2 ) ;
6771 var el = $ ( "#dimensions" ) ;
6872
6973 equal ( el . innerHeight ( ) , 70 , "getter passthru" ) ;
@@ -72,6 +76,7 @@ test( "innerHeight - getter", function() {
7276} ) ;
7377
7478test ( "innerHeight - setter" , function ( ) {
79+ expect ( 2 ) ;
7580 var el = $ ( "#dimensions" ) ;
7681
7782 el . innerHeight ( 60 ) ;
@@ -82,6 +87,7 @@ test( "innerHeight - setter", function() {
8287} ) ;
8388
8489test ( "outerWidth - getter" , function ( ) {
90+ expect ( 2 ) ;
8591 var el = $ ( "#dimensions" ) ;
8692
8793 equal ( el . outerWidth ( ) , 140 , "getter passthru" ) ;
@@ -90,6 +96,7 @@ test( "outerWidth - getter", function() {
9096} ) ;
9197
9298test ( "outerWidth - setter" , function ( ) {
99+ expect ( 2 ) ;
93100 var el = $ ( "#dimensions" ) ;
94101
95102 el . outerWidth ( 130 ) ;
@@ -100,6 +107,7 @@ test( "outerWidth - setter", function() {
100107} ) ;
101108
102109test ( "outerWidth(true) - getter" , function ( ) {
110+ expect ( 2 ) ;
103111 var el = $ ( "#dimensions" ) ;
104112
105113 equal ( el . outerWidth ( true ) , 154 , "getter passthru w/ margin" ) ;
@@ -108,6 +116,7 @@ test( "outerWidth(true) - getter", function() {
108116} ) ;
109117
110118test ( "outerWidth(true) - setter" , function ( ) {
119+ expect ( 2 ) ;
111120 var el = $ ( "#dimensions" ) ;
112121
113122 el . outerWidth ( 130 , true ) ;
@@ -118,6 +127,7 @@ test( "outerWidth(true) - setter", function() {
118127} ) ;
119128
120129test ( "outerHeight - getter" , function ( ) {
130+ expect ( 2 ) ;
121131 var el = $ ( "#dimensions" ) ;
122132
123133 equal ( el . outerHeight ( ) , 86 , "getter passthru" ) ;
@@ -126,6 +136,7 @@ test( "outerHeight - getter", function() {
126136} ) ;
127137
128138test ( "outerHeight - setter" , function ( ) {
139+ expect ( 2 ) ;
129140 var el = $ ( "#dimensions" ) ;
130141
131142 el . outerHeight ( 80 ) ;
@@ -136,6 +147,7 @@ test( "outerHeight - setter", function() {
136147} ) ;
137148
138149test ( "outerHeight(true) - getter" , function ( ) {
150+ expect ( 2 ) ;
139151 var el = $ ( "#dimensions" ) ;
140152
141153 equal ( el . outerHeight ( true ) , 98 , "getter passthru w/ margin" ) ;
@@ -144,6 +156,7 @@ test( "outerHeight(true) - getter", function() {
144156} ) ;
145157
146158test ( "outerHeight(true) - setter" , function ( ) {
159+ expect ( 2 ) ;
147160 var el = $ ( "#dimensions" ) ;
148161
149162 el . outerHeight ( 90 , true ) ;
@@ -154,6 +167,7 @@ test( "outerHeight(true) - setter", function() {
154167} ) ;
155168
156169test ( "uniqueId / removeUniqueId" , function ( ) {
170+ expect ( 3 ) ;
157171 var el = $ ( "img" ) . eq ( 0 ) ;
158172
159173 // support: jQuery <1.6.2
0 commit comments