summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli/schemas/config-file.v1.json25
1 files changed, 25 insertions, 0 deletions
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"
+ }
+ }
+ }
+ }
+ }
}
}
}