From 92ea38e7ce8db1046b4a96b1f05f4da45a7a2913 Mon Sep 17 00:00:00 2001 From: Viacheslav Poturaev Date: Sun, 15 Aug 2021 21:59:39 +0200 Subject: [PATCH] Reduce dependency when implementing custom formatter with local alias (#421) --- test_context.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test_context.go b/test_context.go index 9ea3037..2d9fe3f 100644 --- a/test_context.go +++ b/test_context.go @@ -13,6 +13,9 @@ import ( "github.com/cucumber/godog/internal/models" ) +// Feature represents gherkin document. +type Feature = messages.GherkinDocument + // Scenario represents the executed scenario type Scenario = messages.Pickle