File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
test/commands/deploy/metadata Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ export async function executeDeploy(
147147 org,
148148 // mdapi format deploys don't require a project, but at this point we need one
149149 project : project ?? ( await SfProject . resolve ( ) ) ,
150- subscribeSDREvents : ! opts [ 'dry-run' ] ,
150+ subscribeSDREvents : opts [ 'dry-run' ] ? false : true ,
151151 ignoreConflicts : opts [ 'ignore-conflicts' ] ,
152152 } ) ;
153153 registry = stl . registry ;
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ describe('deploy metadata quick NUTs', () => {
126126
127127 it ( 'should fail to deploy previously deployed deployment' , async ( ) => {
128128 const first = await testkit . execute < DeployResultJson > ( 'project:deploy:start' , {
129- args : '--source-dir force-app' ,
129+ args : '--source-dir force-app --ignore-conflicts ' ,
130130 json : true ,
131131 exitCode : 0 ,
132132 } ) ;
You can’t perform that action at this time.
0 commit comments