mirror of https://github.com/go-gitea/gitea.git
22 lines
437 B
Go
22 lines
437 B
Go
// Copyright 2018 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package repo
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
"code.gitea.io/gitea/modules/setting"
|
|
webhook_service "code.gitea.io/gitea/services/webhook"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
SetUp: func() error {
|
|
setting.LoadQueueSettings()
|
|
return webhook_service.Init()
|
|
},
|
|
})
|
|
}
|