File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,8 @@ const downloadArtifacts = require('../../scripts/download-artifacts')
37
37
38
38
const yamlFolder = downloadArtifacts . locations . testYamlFolder
39
39
40
- const MAX_API_TIME = 1000 * 90
41
- const MAX_FILE_TIME = 1000 * 30
42
- const MAX_TEST_TIME = 1000 * 6
40
+ const MAX_FILE_TIME = 1000 * 90
41
+ const MAX_TEST_TIME = 1000 * 60
43
42
44
43
const options = minimist ( process . argv . slice ( 2 ) , {
45
44
boolean : [ 'bail' ] ,
@@ -56,7 +55,11 @@ const getAllFiles = async dir => {
56
55
}
57
56
58
57
function runner ( opts = { } ) {
59
- const options = { node : opts . node , auth : { apiKey : opts . apiKey } }
58
+ const options = {
59
+ node : opts . node ,
60
+ auth : { apiKey : opts . apiKey } ,
61
+ requestTimeout : 45000
62
+ }
60
63
const client = new Client ( options )
61
64
log ( 'Loading yaml suite' )
62
65
start ( { client } )
You can’t perform that action at this time.
0 commit comments