Files
proton-bridge/tests/init_test.go
2022-11-16 12:26:08 +01:00

15 lines
316 B
Go

package tests
import (
"github.com/ProtonMail/proton-bridge/v2/internal/certs"
"gitlab.protontech.ch/go/liteapi/server/account"
)
func init() {
// Use the fast key generation for tests.
account.GenerateKey = FastGenerateKey
// Use the fast cert generation for tests.
certs.GenerateCert = FastGenerateCert
}