From 16a73650fe201c0959bbb15657856f482a898b12 Mon Sep 17 00:00:00 2001 From: Benjamin Morgan Date: Tue, 14 Nov 2023 17:40:19 +0100 Subject: [PATCH] fixup! engine: Allow signals output file names to be configured --- engine/tests/test_engine_json_schema.json | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/engine/tests/test_engine_json_schema.json b/engine/tests/test_engine_json_schema.json index 0ab251e21..66bcae948 100644 --- a/engine/tests/test_engine_json_schema.json +++ b/engine/tests/test_engine_json_schema.json @@ -700,6 +700,30 @@ } ] }, + "signals": { + "description": "file to store signals in", + "oneOf": [ + { + "type": "null" + }, + { + "comment": "path should either not exist or be a file", + "type": "string" + } + ] + }, + "signals_autocompletion": { + "description": "file to store signal autocompletion in", + "oneOf": [ + { + "type": "null" + }, + { + "comment": "path should either not exist or be a file", + "type": "string" + } + ] + }, "triggers": { "description": "file to store triggers in", "oneOf": [