Files
flux2/cmd/flux/main_unit_test.go
Stefan Prodan d1982e64b2 Refactor e2e tests
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
2021-08-17 13:55:14 +03:00

15 lines
201 B
Go

// +build unit
package main
import (
"os"
"testing"
)
func TestMain(m *testing.M) {
// Ensure tests print consistent timestamps regardless of timezone
os.Setenv("TZ", "UTC")
os.Exit(m.Run())
}