@@ -61,14 +61,14 @@ func Test_Project_InitCommand(t *testing.T) {
6161 cm .IO .On ("ConfirmPrompt" , mock .Anything , app .LinkAppConfirmPromptText , mock .Anything ).Return (false , nil )
6262 },
6363 ExpectedStdoutOutputs : []string {
64- "Project Initialization" , // Assert section header
65- "App Link" , // Assert section header
66- "Next steps to begin development" , // Assert section header
64+ "Project Initialization" , // Assert section header
65+ "App Link" , // Assert section header
66+ "Next Steps" , // Assert section header
6767 },
6868 ExpectedAsserts : func (t * testing.T , ctx context.Context , cm * shared.ClientsMock ) {
6969 // Assert installing project dependencies
7070 output := cm .GetCombinedOutput ()
71- require .Contains (t , output , "Installed project dependencies " )
71+ require .Contains (t , output , "Project Dependencies " )
7272 require .Contains (t , output , "Added " + filepath .Join ("project-name" , ".slack" ))
7373 require .Contains (t , output , "Added " + filepath .Join ("project-name" , ".slack" , ".gitignore" ))
7474 require .Contains (t , output , "Added " + filepath .Join ("project-name" , ".slack" , "hooks.json" ))
@@ -148,9 +148,9 @@ func Test_Project_InitCommand(t *testing.T) {
148148 ).Return (api.GetAppStatusResult {}, nil )
149149 },
150150 ExpectedStdoutOutputs : []string {
151- "Project Initialization" , // Assert section header
152- "App Link" , // Assert section header
153- "Next steps to begin development" , // Assert section header
151+ "Project Initialization" , // Assert section header
152+ "App Link" , // Assert section header
153+ "Next Steps" , // Assert section header
154154 },
155155 ExpectedAsserts : func (t * testing.T , ctx context.Context , cm * shared.ClientsMock ) {
156156 // Assert prompt to add existing apps was called
0 commit comments