File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ var Base = require('./base');
6
6
var inherits = require ( '../utils' ) . inherits ;
7
7
var cursor = Base . cursor ;
8
8
var color = Base . color ;
9
+ var chalk = require ( 'chalk' ) ;
9
10
10
11
/**
11
12
* Expose `Landing`.
@@ -17,19 +18,19 @@ exports = module.exports = Landing;
17
18
* Airplane color.
18
19
*/
19
20
20
- Base . colors . plane = 0 ;
21
+ Base . colors . plane = chalk . white ;
21
22
22
23
/**
23
24
* Airplane crash color.
24
25
*/
25
26
26
- Base . colors [ 'plane crash' ] = 31 ;
27
+ Base . colors [ 'plane crash' ] = chalk . red ;
27
28
28
29
/**
29
30
* Runway color.
30
31
*/
31
32
32
- Base . colors . runway = 90 ;
33
+ Base . colors . runway = chalk . gray ;
33
34
34
35
/**
35
36
* Initialize a new `Landing` reporter.
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ var Base = require('./base');
6
6
var inherits = require ( '../utils' ) . inherits ;
7
7
var color = Base . color ;
8
8
var cursor = Base . cursor ;
9
+ var chalk = require ( 'chalk' ) ;
9
10
10
11
/**
11
12
* Expose `Progress`.
@@ -17,7 +18,7 @@ exports = module.exports = Progress;
17
18
* General progress bar color.
18
19
*/
19
20
20
- Base . colors . progress = 90 ;
21
+ Base . colors . progress = chalk . gray ;
21
22
22
23
/**
23
24
* Initialize a new `Progress` bar test reporter.
You can’t perform that action at this time.
0 commit comments