Remove a skip for darwin arm64 (m1/m2 macs) for exec tests. (#12088)

pull/12015/head
Jenna Goldstrich 4 years ago committed by GitHub
parent 296562614f
commit 0bac9b6f63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -27,10 +27,6 @@ func HasExec() bool {
switch runtime.GOOS {
case "js":
return false
case "darwin":
if runtime.GOARCH == "arm64" {
return false
}
}
return true
}

Loading…
Cancel
Save