From 9f1c6e0139d0cb70b4d52d0af86c5c4c4cb48d24 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 13 Nov 2015 23:43:28 +0100 Subject: [PATCH] bdd: Add some comments to misc.feature. --- tests/integration/features/misc.feature | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/integration/features/misc.feature b/tests/integration/features/misc.feature index 27fc11f58..1be4f137b 100644 --- a/tests/integration/features/misc.feature +++ b/tests/integration/features/misc.feature @@ -1,5 +1,7 @@ Feature: Various utility commands. + ## :set-cmd-text + Scenario: :set-cmd-text and :command-accept When I run :set-cmd-text :message-info "Hello World" And I run :command-accept @@ -31,6 +33,8 @@ Feature: Various utility commands. When I run :set-cmd-text foo Then the error "Invalid command text 'foo'." should be shown. + ## :message-* + Scenario: :message-error When I run :message-error "Hello World" Then the error "Hello World" should be shown. @@ -43,6 +47,8 @@ Feature: Various utility commands. When I run :message-warning "Hello World" Then the warning "Hello World" should be shown. + ## :jseval + Scenario: :jseval When I set general -> log-javascript-console to true And I run :jseval console.log("Hello from JS!");