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