10 lines
310 B
Go
10 lines
310 B
Go
//go:build integration
|
|
|
|
package repository
|
|
|
|
import "testing"
|
|
|
|
func TestUserSubscriptionRepositoryIntegration_LegacyEntSuiteRemoved(t *testing.T) {
|
|
t.Skip("legacy integration suite depended on removed ent client/helpers; migrate this coverage to current SQL repository integration tests before re-enabling")
|
|
}
|