From a74eff63a94bfea583fcc8329acef30223c30fb5 Mon Sep 17 00:00:00 2001 From: Dan Ballard Date: Thu, 10 Feb 2022 15:43:40 -0500 Subject: [PATCH] kill9 tor each test --- integration_test/gherkin_suite_test.editable.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_test/gherkin_suite_test.editable.dart b/integration_test/gherkin_suite_test.editable.dart index 0da89f89..206aa81e 100644 --- a/integration_test/gherkin_suite_test.editable.dart +++ b/integration_test/gherkin_suite_test.editable.dart @@ -95,6 +95,6 @@ void main() { ResetCwtchEnvironment(), AttachScreenshotOnFailedStepHook(), ], - (World world) { var res = app.main(); sleep(Duration(seconds:2)); return res;}, + (World world) { var killRes = Process.run("pkill", ["-9", "tor"]); var res = app.main(); sleep(Duration(seconds:2)); return res;}, ); } \ No newline at end of file