@@ -13,18 +13,18 @@ import { addFile as gitAddFile, init as gitInit, log, whatChanged } from '../../
1313import { commit as commitizenCommit , init as commitizenInit } from '../../src/commitizen' ;
1414
1515// Destructure some things for cleaner tests
16- let { config, sh , repo, clean, files } = bootstrap ( ) ;
16+ let { config, repo, clean, files } = bootstrap ( ) ;
1717let { writeFilesToPath } = files ;
1818
1919before ( function ( ) {
2020 // Creates the temp path
21- clean . before ( sh , config . paths . tmp ) ;
21+ clean . before ( config . paths . tmp ) ;
2222} ) ;
2323
2424beforeEach ( function ( ) {
2525 this . timeout ( config . maxTimeout ) ; // this could take a while
2626 /* istanbul ignore next */
27- repo . createEndUser ( sh , config . paths . endUserRepo ) ;
27+ repo . createEndUser ( config . paths . endUserRepo ) ;
2828} ) ;
2929
3030describe ( 'commit' , function ( ) {
@@ -316,14 +316,14 @@ ${(os.platform === 'win32') ? '' : ' '}
316316afterEach ( function ( ) {
317317 this . timeout ( config . maxTimeout ) ; // this could take a while
318318 // All this should do is archive the tmp path to the artifacts
319- clean . afterEach ( sh , config . paths . tmp , config . preserve ) ;
319+ clean . afterEach ( config . paths . tmp , config . preserve ) ;
320320} ) ;
321321
322322after ( function ( ) {
323323 this . timeout ( config . maxTimeout ) ; // this could take a while
324324 // Once everything is done, the artifacts should be cleaned up based on
325325 // the preserve setting in the config
326- clean . after ( sh , config . paths . tmp , config . preserve ) ;
326+ clean . after ( config . paths . tmp , config . preserve ) ;
327327} ) ;
328328
329329/**
0 commit comments