From 248bfda8d3b1d7f44c1bb24a3741165f3d7dba5a Mon Sep 17 00:00:00 2001 From: Roj Date: Tue, 19 Jul 2022 22:10:41 +0300 Subject: chore(cli): update config file schema to include test config (#15246) --- cli/schemas/config-file.v1.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'cli/schemas') diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json index 17206fc18..a8f80dd36 100644 --- a/cli/schemas/config-file.v1.json +++ b/cli/schemas/config-file.v1.json @@ -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" + } + } + } + } + } } } } -- cgit v1.2.3