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