15 lines
173 B
Go
15 lines
173 B
Go
|
package forms
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"testing"
|
||
|
|
||
|
log "github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
func TestMain(m *testing.M) {
|
||
|
log.SetLevel(log.DebugLevel)
|
||
|
code := m.Run()
|
||
|
os.Exit(code)
|
||
|
}
|