for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package main
import (
"os"
"testing"
"github.com/rfinochi/golang-workshop-todo/pkg/common"
)
func TestMain(t *testing.T) {
os.Setenv(common.RepositoryEnvVarName, common.RepositoryMemory)
go main()
}