File tree Expand file tree Collapse file tree
src/NodeDev.EndToEndTests/Tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,25 +22,6 @@ public async Task CreateNewEmptyProject()
2222 Console . WriteLine ( "✓ Created new project with default class" ) ;
2323 }
2424
25- [ Fact ( Timeout = 60_000 ) ]
26- public async Task SaveProjectWithCustomName ( )
27- {
28- await HomePage . CreateNewProject ( ) ;
29-
30- await HomePage . OpenSaveAsDialog ( ) ;
31- await HomePage . SetProjectNameAs ( "MyCustomProject" ) ;
32- await HomePage . AcceptSaveAs ( ) ;
33-
34- await HomePage . SnackBarHasByText ( "Project saved" ) ;
35-
36- // Verify project is valid
37- await HomePage . OpenProjectExplorerProjectTab ( ) ;
38- var hasProgram = await HomePage . ClassExists ( "Program" ) ;
39- Assert . True ( hasProgram , "Project not properly created - Program class missing" ) ;
40-
41- await HomePage . TakeScreenshot ( "/tmp/project-saved.png" ) ;
42- }
43-
4425 [ Fact ( Timeout = 60_000 ) ]
4526 public async Task SaveProjectAfterModifications ( )
4627 {
You can’t perform that action at this time.
0 commit comments