File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ describe('Builder', function(){
42
42
var builder = new Builder ( 'test/fixtures/hello' ) ;
43
43
builder . addLookup ( 'test/fixtures' ) ;
44
44
builder . on ( 'dependency' , function ( builder ) {
45
- builder . dir . should . be . a ( 'string' ) ;
45
+ builder . dir . should . have . type ( 'string' ) ;
46
46
builder . basename . should . equal ( 'component-emitter' ) ;
47
47
done ( ) ;
48
48
} ) ;
@@ -92,7 +92,7 @@ describe('Builder', function(){
92
92
var builder = new Builder ( 'test/fixtures/hello' ) ;
93
93
builder . addLookup ( 'test/fixtures' ) ;
94
94
builder . on ( 'dependency' , function ( builder ) {
95
- builder . dir . should . be . a ( 'string' ) ;
95
+ builder . dir . should . have . type ( 'string' ) ;
96
96
builder . basename . should . equal ( 'component-emitter' ) ;
97
97
done ( ) ;
98
98
} ) ;
You can’t perform that action at this time.
0 commit comments