- Fixed path resolution in test setup to handle both feature-specific and multi-feature execution - Standardized stopOnFailure=false for all feature tests to ensure consistent behavior - Removed @todo tag from implemented Configuration validation scenario - Ensured GODOG_TAGS=todo go test ./features/X/... and FEATURE=X go test ./features/ run identical tests All feature suites (jwt, auth, greet, health, config) now behave consistently regardless of execution method. Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
17 lines
374 B
Go
17 lines
374 B
Go
package greet
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"dance-lessons-coach/pkg/bdd/testsetup"
|
|
)
|
|
|
|
func TestGreetBDD(t *testing.T) {
|
|
config := testsetup.NewFeatureConfig("greet", "progress", false)
|
|
suite := testsetup.CreateTestSuite(t, config, "dance-lessons-coach BDD Tests - Greet Feature")
|
|
|
|
if suite.Run() != 0 {
|
|
t.Fatal("non-zero status returned, failed to run greet BDD tests")
|
|
}
|
|
}
|