cucumber icon indicating copy to clipboard operation
cucumber copied to clipboard

Cucumber testing framework for Rust. Fully native, no external test runners or dependencies.

Results 26 cucumber issues
Sort by recently updated
recently updated
newest added

Hello everyone, I was thinking if it's possible to support feature in markdown format (see [here](https://github.com/cucumber/gherkin/blob/main/MARKDOWN_WITH_GHERKIN.md)). Like said in the link before, the markdown format is great in order to...

Hello, ``` Scenario: Unsuccessfull debug from vscode file Given a developer who uses vscode When he clicks debug at the top of main function generated by rust-analyzer Then debug fails...

bug
question
k::toolchain

This is just a suggestion to add scenario name to output. Currently it looks like this with the default writer: ``` ✘ Then last response status is 123 Step failed:...

enhancement
k::UI/UX

Looking through the docs, I cant see an attach dunction like in cucumber jvm/js/rb. The purpose would be to attach images or assets to the cucumber json result for display...

feature
k::api
k::design
k::UI/UX

Sorry if this is an IDE issue but any clue of running test on debug mode ? Steps 1) click on "Debug Test execute" start_app() basically establishes a db connection...

question
k::api

in the [openCypher TCK](https://github.com/opencypher/openCypher/blob/master/tck) there exists a [feature](https://github.com/opencypher/openCypher/blob/master/tck/features/clauses/match/Match5.feature) which contains scenarios that [start with `And` steps](https://github.com/opencypher/openCypher/blob/007895aff5f33097d67b2e48a0a2babd6bd18590/tck/features/clauses/match/Match5.feature#L620-L627). These `And` steps follow the `Background` `Given` to provide more complete scenarios. AFAICT, the...

enhancement
k::design

When running [cucumber-html-reporter](https://github.com/gkushang/cucumber-html-reporter) against a generated json report, I noticed all the steps are classified as skipped. When manually the status to lowercase (Passed -> passed, etc), the report is...

We maintain a large collection of feature files that feed nightly regression tests, the runtime of which has grown significantly recently. These are generally maintained in logically separated feature files,...

bug
question
k::performance

#84 brought a valid topic that using `run()` did not allow you to see if the Cucumber tests fail. The output of this ticket was [new `run_and_exit()` method](https://docs.rs/cucumber/latest/cucumber/struct.Cucumber.html#method.run_and_exit) - which,...

bug
k::documentation

I have a feature file like this: ``` # language: en Feature: Persistency Scenario Outline: Persisted Parameters Given the communication to the device over RS232 When the command is sent:...