Skip to content

Latest commit

 

History

History
71 lines (47 loc) · 1.5 KB

Example.feature.md

File metadata and controls

71 lines (47 loc) · 1.5 KB
info tags variants
front-matter should be supported for feature-level settings
first
nw nw-modem
ltem
LTE-M
nw nw-modem
nbiot
NB-IoT

Example feature

This is a description for the feature, which can span multiple lines. This paragraph is intentionally very long so we hit the prettier auto-format wrapping the long line.

And line-breaks should be allowed in the description.

The first scenario

This is a description for the scenario, which can span multiple lines. This paragraph is intentionally very long so we hit the prettier auto-format wrapping the long line.

And line-breaks should be allowed in the description.

Given a calculator

When I add 4

And I add 5

Then the result is 9

Verify that a webhook request was sent using the REST client

When I POST to ${webhookReceiver}/hook with this JSON

{ "foo": "bar" }

Then the response status code should be 202

Scenario Outline: eating

Given there are ${start} cucumbers

When I eat ${eat} cucumbers

Then I should have ${left} cucumbers

Examples

start eat left
12 5 7
20 5 15

Another Scenario

Given this is the last scenario