2018-04-29 11:51:33 +05:30
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2018-04-29 11:51:33 +05:30
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 20:06:47 +05:30
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-04-25 23:33:01 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
webhook_service "code.gitea.io/gitea/services/webhook"
|
2018-04-29 11:51:33 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-04-14 19:28:21 +05:30
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
2023-05-04 09:25:35 +05:30
|
|
|
SetUp: func() error {
|
|
|
|
setting.LoadQueueSettings()
|
|
|
|
return webhook_service.Init()
|
|
|
|
},
|
2022-04-14 19:28:21 +05:30
|
|
|
})
|
2018-04-29 11:51:33 +05:30
|
|
|
}
|