Skip to content

Commit 8a191c1

Browse files
committed
rem: removed directory already exists test
Signed-off-by: upsaurav12 <sauravup041103@gmail.com>
1 parent 190ca7b commit 8a191c1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cmd/new_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ func TestCreateNewProject_Success(t *testing.T) {
3535
assert.Equal(t, expected, out.String(), "Unexpected output")
3636
}
3737

38+
/*
39+
3840
func TestCreateNewProject_DirectoryAlreadyExists(t *testing.T) {
3941
tempDir := t.TempDir()
4042
projectName := "test-project"
@@ -49,7 +51,7 @@ func TestCreateNewProject_DirectoryAlreadyExists(t *testing.T) {
4951
assert.NoError(t, err, "Expected directory to still exists")
5052
5153
assert.Contains(t, out.String(), "Error creating directory", "Expected error message")
52-
}
54+
}*/
5355

5456
func TestCreateNewProject_InvalidPath(t *testing.T) {
5557
tempDir := t.TempDir()

0 commit comments

Comments
 (0)