Files
bjarneo--cliamp/internal/resume/testmain_test.go
T
2026-07-05 13:50:51 +02:00

13 lines
161 B
Go

package resume
import (
"os"
"testing"
)
func TestMain(m *testing.M) {
os.Unsetenv("CLIAMP_CONFIG_DIR")
os.Unsetenv("XDG_CONFIG_HOME")
os.Exit(m.Run())
}