Skip to content

Instantly share code, notes, and snippets.

@olexale
Created February 28, 2021 10:30
Embed
What would you like to do?
BDD in Flutter article updated feature file
Feature: Counter
Scenario: Initial counter value is 0
Given the app is running
Then I see {'0'} text
Scenario: Tap the Plus icon increments the counter
Given the app is running
When I tap {Icons.add} icon
Then I see {'1'} text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment