diff --git a/src/MuTalk-Model/MethodMutation.class.st b/src/MuTalk-Model/MethodMutation.class.st index 40378ad3..81c8b3d9 100644 --- a/src/MuTalk-Model/MethodMutation.class.st +++ b/src/MuTalk-Model/MethodMutation.class.st @@ -131,9 +131,12 @@ MethodMutation >> printOn: aStream [ { #category : 'running' } MethodMutation >> runMutantStoppingOnError: aBoolean [ - ^ [ - self install. - self runTestsStoppingOnError: aBoolean ] ensure: [ self uninstall ] + | testResults | + EpMonitor disableDuring: [ + [ self install. + testResults := self runTestsStoppingOnError: aBoolean + ] ensure: [ self uninstall ] ]. + ^ testResults ] { #category : 'private' }