testWidgetsGherkin function
void
testWidgetsGherkin(
- String description, {
- required TestConfiguration testConfiguration,
- WidgetCucumberWorld? customWorld,
Implementation
void testWidgetsGherkin(String description, {required TestConfiguration testConfiguration, WidgetCucumberWorld? customWorld}) {
testWidgets(description, (WidgetTester tester) async {
await tester.runAsync(() async {
await runTest(tester: tester, testConfiguration: testConfiguration, customWorld: customWorld);
});
}, tags: 'testWidget');
}