File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
dev-packages/e2e-tests/lib Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ function run(): void {
4646 } ,
4747 } ) ;
4848
49- const { base, head, optional } = values ;
49+ const { base, head = 'HEAD' , optional } = values ;
5050
5151 const testApplications = globSync ( '*/package.json' , {
5252 cwd : `${ __dirname } /../test-applications` ,
@@ -174,7 +174,7 @@ function getAffectedTestApplications(
174174}
175175
176176function getChangedTestApps ( base : string , head ?: string ) : false | Set < string > {
177- const changedFiles = execSync ( `git diff --name-only ${ base } ${ head ? `..${ head } ` : '' } -- dev-packages/e2e-tests/ ` , {
177+ const changedFiles = execSync ( `git diff --name-only ${ base } ${ head ? `..${ head } ` : '' } -- . ` , {
178178 encoding : 'utf-8' ,
179179 } )
180180 . toString ( )
You can’t perform that action at this time.
0 commit comments