2017-01-24 15:09:23 +00:00
|
|
|
// +build darwin
|
|
|
|
|
|
|
|
package runner
|
|
|
|
|
|
|
|
const (
|
2017-12-22 01:43:51 +00:00
|
|
|
// DefaultChromePath is the default path to the Chrome application.
|
2017-01-24 15:09:23 +00:00
|
|
|
DefaultChromePath = `/Applications/Google Chrome.app/Contents/MacOS/Google Chrome`
|
|
|
|
)
|
|
|
|
|
|
|
|
func findChromePath() string {
|
|
|
|
return DefaultChromePath
|
|
|
|
}
|