package tests import ( "testing" "github.com/stretchr/testify/require" ) func TestLogin(t *testing.T) { assert.Equal(true, false) } func TestMain(m *testing.M) { m.Run() }