test(GODT-2298): add integration test for In-Reply-To header use cases.

This commit is contained in:
Romain Le Jeune
2023-02-02 15:25:27 +00:00
parent 8901d83c94
commit 219400de8d
7 changed files with 185 additions and 1 deletions

View File

@ -20,6 +20,7 @@ package tests
import (
"context"
"fmt"
"os"
"runtime"
"github.com/ProtonMail/go-proton-api"
@ -33,6 +34,7 @@ func (t *testCtx) withProton(fn func(*proton.Manager) error) error {
proton.WithHostURL(t.api.GetHostURL()),
proton.WithTransport(proton.InsecureTransport()),
proton.WithAppVersion(t.api.GetAppVersion()),
proton.WithDebug(os.Getenv("FEATURE_API_DEBUG") != ""),
)
defer m.Close()