# File lib/guard/interactor.rb, line 121
    def stop
      return if !@thread || ENV['GUARD_ENV'] == 'test'

      ::Guard::UI.debug 'Stop interactor'
      unless Thread.current == @thread
        @thread.kill
      end
    end