File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " regressify" ,
3- "version" : " 1.8.5 " ,
3+ "version" : " 1.8.6 " ,
44 "description" : " Visual regression tests support" ,
55 "main" : " src/index.ts" ,
66 "type" : " module" ,
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export async function regressifyProcess(command: 'approve' | 'reference' | 'test
3131 return ;
3232 }
3333
34- configs . forEach ( async ( config ) => {
34+ for ( const config of configs ) {
3535 console . log ( chalk . blue ( `Running backstopjs command: ${ command } for test suite: ${ config . id } ` ) ) ;
3636
3737 await backstop ( command , { config } )
@@ -41,7 +41,7 @@ export async function regressifyProcess(command: 'approve' | 'reference' | 'test
4141 . catch ( ( ) => {
4242 console . log ( chalk . red ( command . toUpperCase ( ) + ' FAILED' ) ) ;
4343 } ) ;
44- } ) ;
44+ }
4545}
4646
4747function patchCustomStyle ( reportIndex : string ) {
You can’t perform that action at this time.
0 commit comments