chore(cli): update config file schema to include test config (#15246)

This commit is contained in:
Roj 2022-07-19 22:10:41 +03:00 committed by GitHub
parent 0ab262b901
commit 248bfda8d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -321,6 +321,31 @@
}
},
"additionalProperties": false
},
"test": {
"description": "Configuration for deno test",
"type": "object",
"properties": {
"files": {
"type": "object",
"properties": {
"include": {
"type": "array",
"description": "List of files or directories that will be searched for tests.",
"items": {
"type": "string"
}
},
"exclude": {
"type": "array",
"description": "List of files or directories that will not be searched for tests.",
"items": {
"type": "string"
}
}
}
}
}
}
}
}