File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
+ os :
3
+ - linux
4
+ - windows
2
5
node_js :
3
6
- " 6"
4
7
- " 10"
5
- - " stable "
8
+ - " node "
6
9
before_script :
7
10
- git config --global user.name 'Travis-CI'
8
11
- git config --global user.email 'dummy@example.org'
Original file line number Diff line number Diff line change @@ -710,13 +710,13 @@ describe('cli', function () {
710
710
} )
711
711
712
712
it ( 'does not display `all staged files` without the --commit-all flag' , function ( ) {
713
- let result = execCli ( )
713
+ const result = execCli ( )
714
714
result . code . should . equal ( 0 )
715
715
result . stdout . should . not . match ( / a n d a l l s t a g e d f i l e s / )
716
716
} )
717
717
718
718
it ( 'does display `all staged files` if the --commit-all flag is passed' , function ( ) {
719
- let result = execCli ( '--commit-all' )
719
+ const result = execCli ( '--commit-all' )
720
720
result . code . should . equal ( 0 )
721
721
result . stdout . should . match ( / a n d a l l s t a g e d f i l e s / )
722
722
} )
You can’t perform that action at this time.
0 commit comments