@@ -22,7 +22,7 @@ describe("NodeWatchFileSystem", function() {
2222 if ( err ) throw err ;
2323 filesModified . should . be . eql ( [ fileDirect ] ) ;
2424 dirsModified . should . be . eql ( [ ] ) ;
25- fileTimestamps . should . have . property ( fileDirect ) . be . a ( "number" ) ;
25+ fileTimestamps . should . have . property ( fileDirect ) . have . type ( "number" ) ;
2626 dirTimestamps . should . be . eql ( { } ) ;
2727 done ( ) ;
2828 } ) ;
@@ -38,7 +38,7 @@ describe("NodeWatchFileSystem", function() {
3838 if ( err ) throw err ;
3939 filesModified . should . be . eql ( [ fileDirect ] ) ;
4040 dirsModified . should . be . eql ( [ ] ) ;
41- fileTimestamps . should . have . property ( fileDirect ) . be . a ( "number" ) ;
41+ fileTimestamps . should . have . property ( fileDirect ) . have . type ( "number" ) ;
4242 dirTimestamps . should . be . eql ( { } ) ;
4343 done ( ) ;
4444 } ) ;
@@ -53,7 +53,7 @@ describe("NodeWatchFileSystem", function() {
5353 filesModified . should . be . eql ( [ ] ) ;
5454 dirsModified . should . be . eql ( [ fixtures ] ) ;
5555 fileTimestamps . should . be . eql ( { } ) ;
56- dirTimestamps . should . have . property ( fixtures ) . be . a ( "number" ) ;
56+ dirTimestamps . should . have . property ( fixtures ) . have . type ( "number" ) ;
5757 done ( ) ;
5858 } ) ;
5959
@@ -69,7 +69,7 @@ describe("NodeWatchFileSystem", function() {
6969 filesModified . should . be . eql ( [ ] ) ;
7070 dirsModified . should . be . eql ( [ fixtures ] ) ;
7171 fileTimestamps . should . be . eql ( { } ) ;
72- dirTimestamps . should . have . property ( fixtures ) . be . a ( "number" ) ;
72+ dirTimestamps . should . have . property ( fixtures ) . have . type ( "number" ) ;
7373 done ( ) ;
7474 } ) ;
7575 } , 500 ) ;
@@ -83,7 +83,7 @@ describe("NodeWatchFileSystem", function() {
8383 filesModified . should . be . eql ( [ ] ) ;
8484 dirsModified . should . be . eql ( [ fixtures ] ) ;
8585 fileTimestamps . should . be . eql ( { } ) ;
86- dirTimestamps . should . have . property ( fixtures ) . be . a ( "number" ) ;
86+ dirTimestamps . should . have . property ( fixtures ) . have . type ( "number" ) ;
8787 done ( ) ;
8888 } ) ;
8989
@@ -99,7 +99,7 @@ describe("NodeWatchFileSystem", function() {
9999 filesModified . should . be . eql ( [ ] ) ;
100100 dirsModified . should . be . eql ( [ fixtures ] ) ;
101101 fileTimestamps . should . be . eql ( { } ) ;
102- dirTimestamps . should . have . property ( fixtures ) . be . a ( "number" ) ;
102+ dirTimestamps . should . have . property ( fixtures ) . have . type ( "number" ) ;
103103 done ( ) ;
104104 } ) ;
105105 } , 500 ) ;
@@ -113,9 +113,9 @@ describe("NodeWatchFileSystem", function() {
113113 if ( err ) throw err ;
114114 filesModified . should . be . eql ( [ fileSubdir , fileDirect ] ) ;
115115 dirsModified . should . be . eql ( [ fixtures ] ) ;
116- fileTimestamps . should . have . property ( fileDirect ) . be . a ( "number" ) ;
117- fileTimestamps . should . have . property ( fileSubdir ) . be . a ( "number" ) ;
118- dirTimestamps . should . have . property ( fixtures ) . be . a ( "number" ) ;
116+ fileTimestamps . should . have . property ( fileDirect ) . have . type ( "number" ) ;
117+ fileTimestamps . should . have . property ( fileSubdir ) . have . type ( "number" ) ;
118+ dirTimestamps . should . have . property ( fixtures ) . have . type ( "number" ) ;
119119 done ( ) ;
120120 } ) ;
121121 } , 500 ) ;
@@ -129,9 +129,9 @@ describe("NodeWatchFileSystem", function() {
129129 if ( err ) throw err ;
130130 filesModified . should . be . eql ( [ fileSubdir , fileDirect ] ) ;
131131 dirsModified . should . be . eql ( [ fixtures ] ) ;
132- fileTimestamps . should . have . property ( fileDirect ) . be . a ( "number" ) ;
133- fileTimestamps . should . have . property ( fileSubdir ) . be . a ( "number" ) ;
134- dirTimestamps . should . have . property ( fixtures ) . be . a ( "number" ) ;
132+ fileTimestamps . should . have . property ( fileDirect ) . have . type ( "number" ) ;
133+ fileTimestamps . should . have . property ( fileSubdir ) . have . type ( "number" ) ;
134+ dirTimestamps . should . have . property ( fixtures ) . have . type ( "number" ) ;
135135 done ( ) ;
136136 } ) ;
137137
0 commit comments