- 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
362 B
Go
17 lines
362 B
Go
package jwt
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"dance-lessons-coach/pkg/bdd/testsetup"
|
|
)
|
|
|
|
func TestJWTBDD(t *testing.T) {
|
|
config := testsetup.NewFeatureConfig("jwt", "pretty", false)
|
|
suite := testsetup.CreateTestSuite(t, config, "dance-lessons-coach BDD Tests - JWT Feature")
|
|
|
|
if suite.Run() != 0 {
|
|
t.Fatal("non-zero status returned, failed to run jwt BDD tests")
|
|
}
|
|
}
|