From b0f1f06c86339ee5abcbe0b6d91615d5c517732c Mon Sep 17 00:00:00 2001 From: What-If-I Date: Sat, 14 Jan 2023 18:43:27 +0300 Subject: [PATCH] Update doc with "description" field --- README-ru.md | 4 +++- gonkey.json | 6 +++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README-ru.md b/README-ru.md index 28d8b0d..15c4b3d 100644 --- a/README-ru.md +++ b/README-ru.md @@ -331,6 +331,7 @@ responseHeaders: В описании теста можно использовать переменные, они поддерживаются в следующих полях: - method +- description - path - query - headers @@ -346,6 +347,7 @@ responseHeaders: ```yaml - method: "{{ $method }}" + description: "{{ $description }}" path: "/some/path/{{ $pathPart }}" query: "{{ $query }}" headers: @@ -1804,4 +1806,4 @@ Example: ``` В примере выше, схема из файла C:\Users\Leo\gonkey.json будет применяться ко всем файлам -с расширением .gonkey.yaml \ No newline at end of file +с расширением .gonkey.yaml diff --git a/gonkey.json b/gonkey.json index 273d9ad..b7a0dcb 100644 --- a/gonkey.json +++ b/gonkey.json @@ -18,6 +18,10 @@ "type": "string", "description": "test name" }, + "description":{ + "type": "string", + "description": "test description" + }, "method": { "type": "string", "description": "HTTP request type", @@ -548,4 +552,4 @@ ] } } -} \ No newline at end of file +}