splendo / CucumberMultiplatform

Apache License 2.0
2 stars 0 forks source link

Gherkin syntax `Then` #28

Open corrado4eyes opened 1 year ago

corrado4eyes commented 1 year ago

Represent an expected and visible outcome for the user such as a message popping up, or a loading spinner.

Docs

feature("Some feature") {
    scenario("Some scenario") {
        given("The user is logged in") {
            // initialise user to be logged in
        }
        then("The user should see the Home view") {
            // assert that the user sees the Home view and not another 
        }
    }
}