Using go test instead of testify

From looking at this:

it looks like one has to use testify? We have a lot of code, and we are very happy with go test. Can we test temporal workflows with go test? Can you point us to some code? Thanks

Testify is just a helper lib a lot of projects use. You don’t have to use any helpers and you don’t have to organize tests into suites. All of those tests still run with Go test. See the samples at GitHub - temporalio/samples-go: Temporal Go SDK samples for plenty of tests.

Ok great, will check it out. Thank you for the quick response.