@@ -323,10 +323,12 @@ void main() {
323323Feature: Testing feature
324324
325325 Background:
326- Given the following songs
326+ Given I wait
327+ And the following songs
327328 | artist | title |
328329 | 'The Beatles' | 'Let It Be' |
329330 | 'Camel' | 'Slow yourself down' |
331+ And I wait
330332
331333 Scenario: Testing scenario
332334 Given I wait
@@ -344,14 +346,16 @@ import 'package:bdd_widget_test/data_table.dart' as bdd;
344346import 'package:flutter/material.dart';
345347import 'package:flutter_test/flutter_test.dart';
346348
347- import './step/the_following_songs.dart';
348349import './step/i_wait.dart';
350+ import './step/the_following_songs.dart';
349351import './step/the_following_users_exist.dart';
350352
351353void main() {
352354 group(\'\'\' Testing feature\'\'\' , () {
353355 Future<void> bddSetUp(WidgetTester tester) async {
356+ await iWait(tester);
354357 await theFollowingSongs(tester, const bdd.DataTable([[artist, title], ['The Beatles', 'Let It Be'], ['Camel', 'Slow yourself down']]));
358+ await iWait(tester);
355359 }
356360 testWidgets(\'\'\' Testing scenario\'\'\' , (tester) async {
357361 await bddSetUp(tester);
@@ -382,6 +386,7 @@ Feature: Testing feature
382386 | name | twitter |
383387 | 'Oleksandr' | '@olexale' |
384388 | 'Flutter' | '@FlutterDev' |
389+ And I wait
385390
386391 Scenario: Testing scenario
387392 Given the following songs
@@ -409,6 +414,7 @@ void main() {
409414 await iWait(tester);
410415 await theFollowingUsersExist(tester, 'Oleksandr', '@olexale');
411416 await theFollowingUsersExist(tester, 'Flutter', '@FlutterDev');
417+ await iWait(tester);
412418 }
413419 testWidgets(\'\'\' Testing scenario\'\'\' , (tester) async {
414420 try {
0 commit comments