@@ -61,7 +61,7 @@ func TestAddFlowEntriesToCursorIgnore_NoDuplicates(t *testing.T) {
6161 content , err := state .ReaderWriter ().ReadFile (".cursorignore" )
6262 require .NoError (t , err , "Failed to read cursorignore file" )
6363
64- expectedEntries := []string {"# flow" , "emulator-account.pkey" , ".env" , "# Pay attention to imports directory" , "!imports/** " }
64+ expectedEntries := []string {"# flow" , "emulator-account.pkey" , ".env" , "# Pay attention to imports directory" , "!imports" }
6565 for _ , entry := range expectedEntries {
6666 assert .Contains (t , string (content ), entry , "Expected cursorignore to contain %s" , entry )
6767 }
@@ -114,7 +114,7 @@ func TestAddFlowEntriesToCursorIgnore_WithExistingContent(t *testing.T) {
114114
115115 assert .Contains (t , string (content ), existingContent , "Expected existing content to be preserved" )
116116
117- flowEntries := []string {"# flow" , "emulator-account.pkey" , ".env" , "# Pay attention to imports directory" , "!imports/** " }
117+ flowEntries := []string {"# flow" , "emulator-account.pkey" , ".env" , "# Pay attention to imports directory" , "!imports" }
118118 for _ , entry := range flowEntries {
119119 assert .Contains (t , string (content ), entry , "Expected cursorignore to contain %s" , entry )
120120 }
0 commit comments