attempt integ test sleep between tests

This commit is contained in:
Dan Ballard 2022-02-09 14:37:51 -05:00
parent 4dd058deb2
commit d9a6684891
2 changed files with 1 additions and 2 deletions

View File

@ -351,7 +351,6 @@ steps:
- export PATH=$PATH:/Users/Dan/development/flutter/bin
- export GEM_HOME=$HOME/.gem
- export PATH=$GEM_HOME/ruby/2.6.0/bin:$PATH
- flutter doctor
- ./run-tests.sh
- cp integration_test/gherkin/reports/cucumber_report.html deploy/macos_cucumber_report.html

View File

@ -95,6 +95,6 @@ void main() {
ResetCwtchEnvironment(),
AttachScreenshotOnFailedStepHook(),
],
(World world) => app.main(),
(World world) { var res = app.main(); sleep(Duration(seconds:1)); return res;},
);
}