From 70c5938292b1a4868bb7a927babc51acaa261cf6 Mon Sep 17 00:00:00 2001 From: Alex Malykh <49870662+ysomad@users.noreply.github.com> Date: Thu, 23 Nov 2023 18:50:25 +0400 Subject: [PATCH] update readme --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 8a1f832..ccbdba5 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,17 @@ require("gopher").setup { impl = "impl", iferr = "iferr", }, + gotests = { + -- gotests tag to install from + tag = "@latest", + -- gotests doesn't have template named "default" so this plugin uses "default" to set the default template + template = "default", + -- path to a directory containing custom test code templates + template_dir = nil, + -- switch table tests from using slice to map (with test name for the key) + -- works only with gotests installed from develop branch + named = false, + }, } ```