leptos/examples/suspense_tests/e2e/features/click_single_count.feature

20 lines
433 B
Gherkin

@click_single_count
Feature: Click Single Count
Background:
Given I see the app
Scenario Outline: Should increase the count
Given I select the mode <Mode>
And I select the component Single
When I click the count 3 times
Then I see the count is 3
Examples:
| Mode |
| Out-of-Order |
| In-Order |
| Async |