kill9 tor each test

This commit is contained in:
Dan Ballard 2022-02-10 15:43:40 -05:00
parent 7f373dcd5b
commit a74eff63a9
1 changed files with 1 additions and 1 deletions

View File

@ -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;},
);
}