@@ -51,16 +51,16 @@ def test_parse_all_shipped_workflows(self, e2e_project, project_root_path):
5151 def test_validate_workflow_schema (self , e2e_project , project_root_path ):
5252 """Test workflow schema validation."""
5353 workflows_dir = project_root_path / "workflows"
54- workflow_file = workflows_dir / "presets" / "feature-implementation .yaml"
54+ workflow_file = workflows_dir / "presets" / "rapid-dev .yaml"
5555
5656 # Validate workflow file exists - fail immediately if missing
5757 validate_workflow_file (workflow_file )
5858
5959 workflow = WorkflowParser .parse_file (workflow_file )
6060
61- # Validate workflow structure
62- assert workflow .id == "feature-implementation "
63- assert workflow .name == "Feature Implementation "
61+ # Validate workflow structure (rapid-dev: feature development preset)
62+ assert workflow .id == "rapid-dev "
63+ assert workflow .name == "Rapid Development "
6464 assert workflow .version is not None
6565 # schema_version is stored in metadata, not as direct attribute
6666 # Check metadata if needed, but don't require it as direct attribute
@@ -93,7 +93,7 @@ def test_handle_invalid_workflow_yaml(self, e2e_project, tmp_path):
9393 def test_workflow_cross_references (self , e2e_project , project_root_path ):
9494 """Test workflow step cross-references (requires/creates)."""
9595 workflows_dir = project_root_path / "workflows"
96- workflow_file = workflows_dir / "presets" / "feature-implementation .yaml"
96+ workflow_file = workflows_dir / "presets" / "rapid-dev .yaml"
9797
9898 # Validate workflow file exists - fail immediately if missing
9999 validate_workflow_file (workflow_file )
0 commit comments