@@ -13,18 +13,18 @@ import { addFile as gitAddFile, init as gitInit, log, whatChanged } from '../../
13
13
import { commit as commitizenCommit , init as commitizenInit } from '../../src/commitizen' ;
14
14
15
15
// Destructure some things for cleaner tests
16
- let { config, sh , repo, clean, files } = bootstrap ( ) ;
16
+ let { config, repo, clean, files } = bootstrap ( ) ;
17
17
let { writeFilesToPath } = files ;
18
18
19
19
before ( function ( ) {
20
20
// Creates the temp path
21
- clean . before ( sh , config . paths . tmp ) ;
21
+ clean . before ( config . paths . tmp ) ;
22
22
} ) ;
23
23
24
24
beforeEach ( function ( ) {
25
25
this . timeout ( config . maxTimeout ) ; // this could take a while
26
26
/* istanbul ignore next */
27
- repo . createEndUser ( sh , config . paths . endUserRepo ) ;
27
+ repo . createEndUser ( config . paths . endUserRepo ) ;
28
28
} ) ;
29
29
30
30
describe ( 'commit' , function ( ) {
@@ -316,14 +316,14 @@ ${(os.platform === 'win32') ? '' : ' '}
316
316
afterEach ( function ( ) {
317
317
this . timeout ( config . maxTimeout ) ; // this could take a while
318
318
// 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 ) ;
320
320
} ) ;
321
321
322
322
after ( function ( ) {
323
323
this . timeout ( config . maxTimeout ) ; // this could take a while
324
324
// Once everything is done, the artifacts should be cleaned up based on
325
325
// the preserve setting in the config
326
- clean . after ( sh , config . paths . tmp , config . preserve ) ;
326
+ clean . after ( config . paths . tmp , config . preserve ) ;
327
327
} ) ;
328
328
329
329
/**
0 commit comments