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

11 lines
129 B
Go
Raw Normal View History

2023-07-12 00:35:32 +08:00
package toml
import "testing"
func TestLoadConfig(t *testing.T) {
_, err := LoadConfig()
if err != nil {
t.Fatal(err)
}
}