@@ -61,7 +61,7 @@ describe('commit', function() {
6161
6262 // Quick setup the repos, adapter, and grab a simple prompter
6363 let prompter = quickPrompterSetup ( sh , repoConfig , adapterConfig , dummyCommitMessage ) ;
64- // TEST
64+ // TEST
6565
6666 // Pass in inquirer but it never gets used since we've mocked out a different
6767 // version of prompter.
@@ -128,20 +128,20 @@ describe('commit', function() {
128128 // Don't trim or delete the spacing in this commit message!
129129
130130 // Git on *nix retains spaces on lines with only spaces
131- // The blank line of this block should have 4 spaces.
132- let nixCommitMessage =
131+ // The blank line of this block should have 4 spaces.
132+ let nixCommitMessage =
133133 `sip sip sippin on jnkjnkjn
134134
135135 some sizzurp` ;
136136
137137 // Git on win32 removes spaces from lines with only spaces
138138 // The blank line of this block should have no spaces
139- let windowsCommitMessage =
139+ let windowsCommitMessage =
140140 `sip sip sippin on jnkjnkjn
141141
142142 some sizzurp` ;
143143
144- let dummyCommitMessage = ( os . platform == 'win32' ) ? windowsCommitMessage : nixCommitMessage ;
144+ let dummyCommitMessage = ( os . platform == 'win32' ) ? windowsCommitMessage : nixCommitMessage ;
145145
146146 // Describe a repo and some files to add and commit
147147 let repoConfig = {
@@ -166,7 +166,7 @@ describe('commit', function() {
166166
167167 // Quick setup the repos, adapter, and grab a simple prompter
168168 let prompter = quickPrompterSetup ( sh , repoConfig , adapterConfig , dummyCommitMessage ) ;
169- // TEST
169+ // TEST
170170
171171 // Pass in inquirer but it never gets used since we've mocked out a different
172172 // version of prompter.
@@ -179,7 +179,7 @@ describe('commit', function() {
179179
180180 } ) ;
181181
182- it ( 'should allow to override options passed to gulp-git ' , function ( done ) {
182+ it ( 'should allow to override git commit options ' , function ( done ) {
183183
184184 this . timeout ( config . maxTimeout ) ; // this could take a while
185185
@@ -215,7 +215,7 @@ describe('commit', function() {
215215
216216 // Quick setup the repos, adapter, and grab a simple prompter
217217 let prompter = quickPrompterSetup ( sh , repoConfig , adapterConfig , dummyCommitMessage , options ) ;
218- // TEST
218+ // TEST
219219
220220 // Pass in inquirer but it never gets used since we've mocked out a different
221221 // version of prompter.
@@ -234,13 +234,13 @@ describe('commit', function() {
234234afterEach ( function ( ) {
235235 // All this should do is archive the tmp path to the artifacts
236236 clean . afterEach ( sh , config . paths . tmp , config . preserve ) ;
237- } ) ;
237+ } ) ;
238238
239239after ( function ( ) {
240- // Once everything is done, the artifacts should be cleaned up based on
240+ // Once everything is done, the artifacts should be cleaned up based on
241241 // the preserve setting in the config
242242 clean . after ( sh , config . paths . tmp , config . preserve ) ;
243- } ) ;
243+ } ) ;
244244
245245/**
246246 * This is just a helper for testing. NOTE that prompter
@@ -267,5 +267,5 @@ function quickPrompterSetup(sh, repoConfig, adapterConfig, commitMessage, option
267267 // NOTE: In the real world we would not be returning
268268 // this we would instead be just making the commented
269269 // out getPrompter() call to get user input (above).
270- return prompter ;
271- }
270+ return prompter ;
271+ }
0 commit comments