Add basic test for pinecone monolith

This commit is contained in:
Devon Hudson 2022-12-23 16:03:46 -07:00
parent 90690b96ff
commit e7f2841d7d
No known key found for this signature in database
GPG key ID: CD06B18E77F6A628

View file

@ -189,3 +189,10 @@ func TestRelayRetrieverSync(t *testing.T) {
}
poll.WaitOn(t, check, poll.WithTimeout(5*time.Second), poll.WithDelay(100*time.Millisecond))
}
func TestMonolithStarts(t *testing.T) {
monolith := DendriteMonolith{}
monolith.Start()
monolith.PublicKey()
// monolith.Stop()
}