Increase default go test timeout (#8380)

Our makefiles always run go test with a 1h timeout. This updates the default vscode settings to the same.
This commit is contained in:
Fraser Waters 2021-11-08 18:07:24 +00:00 committed by GitHub
parent e37892ac4a
commit b96e6a4204
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,4 @@
{
"go.buildTags": "all"
"go.buildTags": "all",
"go.testTimeout": "1h"
}