Files
dance-lessons-coach/features/greet/greet_test.go
Gabriel Radureau 4df20585b8
Some checks failed
CI/CD Pipeline / Build Docker Cache (push) Successful in 10s
CI/CD Pipeline / CI Pipeline (push) Failing after 3m12s
🧪 fix: standardize BDD test execution across all feature suites
- 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>
2026-04-10 11:04:09 +02:00

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")
}
}