mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-07-27 17:28:34 +00:00
22 lines
414 B
Go
22 lines
414 B
Go
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package utils
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"forgejo.org/models/unittest"
|
||
|
"forgejo.org/modules/setting"
|
||
|
webhook_service "forgejo.org/services/webhook"
|
||
|
)
|
||
|
|
||
|
func TestMain(m *testing.M) {
|
||
|
unittest.MainTest(m, &unittest.TestOptions{
|
||
|
SetUp: func() error {
|
||
|
setting.LoadQueueSettings()
|
||
|
return webhook_service.Init()
|
||
|
},
|
||
|
})
|
||
|
}
|