Skip to content

Commit

Permalink
chore(cli): update config file schema to include test config (#15246)
Browse files Browse the repository at this point in the history
  • Loading branch information
rojvv authored Jul 19, 2022
1 parent 0ab262b commit 248bfda
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions cli/schemas/config-file.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
}
}
}
}
}

0 comments on commit 248bfda

Please sign in to comment.