// Copyright 2018 The Gitea Authors. All rights reserved. // SPDX-License-Identifier: MIT package repo 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() }, }) }