sk-matrix-project/app/wails/pkg/config/toml/toml_test.go

11 lines
129 B
Go

package toml
import "testing"
func TestLoadConfig(t *testing.T) {
_, err := LoadConfig()
if err != nil {
t.Fatal(err)
}
}