You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: adding --start-cmd flag to heroku local when no Procfile is present (#3638)
* updating to leverage foreman for output formatting
* small text update for description
* Apply suggestion from @heicheng18
Co-authored-by: Helen Cheng <48834224+heicheng18@users.noreply.github.com>
Signed-off-by: Michael Malave <michael.malave@salesforce.com>
* Apply suggestion from @heicheng18
Co-authored-by: Helen Cheng <48834224+heicheng18@users.noreply.github.com>
Signed-off-by: Michael Malave <michael.malave@salesforce.com>
* Apply suggestion from @heicheng18
Co-authored-by: Helen Cheng <48834224+heicheng18@users.noreply.github.com>
Signed-off-by: Michael Malave <michael.malave@salesforce.com>
* Apply suggestion from @heicheng18
Co-authored-by: Helen Cheng <48834224+heicheng18@users.noreply.github.com>
Signed-off-by: Michael Malave <michael.malave@salesforce.com>
* Apply suggestion from @heicheng18
Co-authored-by: Helen Cheng <48834224+heicheng18@users.noreply.github.com>
Signed-off-by: Michael Malave <michael.malave@salesforce.com>
* Apply suggestion from @heicheng18
Co-authored-by: Helen Cheng <48834224+heicheng18@users.noreply.github.com>
Signed-off-by: Michael Malave <michael.malave@salesforce.com>
* Apply suggestion from @heicheng18
Co-authored-by: Helen Cheng <48834224+heicheng18@users.noreply.github.com>
Signed-off-by: Michael Malave <michael.malave@salesforce.com>
* fixes applied to tests following cx updates
* merge in main and lint fix
---------
Signed-off-by: Michael Malave <michael.malave@salesforce.com>
Co-authored-by: Helen Cheng <48834224+heicheng18@users.noreply.github.com>
`No ${procfile} found.\nAdd a Procfile to add process types.\nhttps://devcenter.heroku.com/articles/procfile\nOr specify a start command with --start-cmd.`,
it('errors when no procfile and no --start-cmd are provided',asyncfunction(){
249
+
hasProcfileStub.returns(false)
250
+
const{error}=awaitrunCommand(Local)
251
+
252
+
expect(error?.message).to.equal(
253
+
'No Procfile found.\nAdd a Procfile to add process types.\nhttps://devcenter.heroku.com/articles/procfile\nOr specify a start command with --start-cmd.',
0 commit comments