mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-11 15:53:04 +03:00
22 lines
609 B
Go
22 lines
609 B
Go
//go:build e2etest
|
|
|
|
package bootstrap
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"gorm.io/gorm"
|
|
|
|
"github.com/pocket-id/pocket-id/backend/internal/controller"
|
|
"github.com/pocket-id/pocket-id/backend/internal/service"
|
|
)
|
|
|
|
// When building for E2E tests, add the e2etest controller
|
|
func init() {
|
|
registerTestControllers = []func(apiGroup *gin.RouterGroup, db *gorm.DB, svc *services){
|
|
func(apiGroup *gin.RouterGroup, db *gorm.DB, svc *services) {
|
|
testService := service.NewTestService(db, svc.appConfigService, svc.jwtService, svc.ldapService)
|
|
controller.NewTestController(apiGroup, testService)
|
|
},
|
|
}
|
|
}
|