mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-24 14:05:45 +03:00
13 lines
173 B
Go
13 lines
173 B
Go
|
package home
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/AdguardTeam/AdGuardHome/internal/aghtest"
|
||
|
)
|
||
|
|
||
|
func TestMain(m *testing.M) {
|
||
|
aghtest.DiscardLogOutput(m)
|
||
|
initCmdLineOpts()
|
||
|
}
|