fix(e2e): skip e2e during unit testing

pull/606/head
Adam Reese 10 years ago
parent 653bb68f95
commit 25a5a11b10

@ -0,0 +1,12 @@
// +build !e2e
package e2e
import (
"os"
"testing"
)
func TestMain(m *testing.M) {
os.Exit(0)
}
Loading…
Cancel
Save