async disable()

in src/test-explorer/decorator.ts [67:78]


  async disable(uri: vscode.Uri) {
    const watcher = this.activeFiles.get(uri.fsPath)
    if (watcher) {
      watcher.dispose()
      this.activeFiles.delete(uri.fsPath)

      const editor = vscode.window.visibleTextEditors.find(
        editor => editor.document.uri.toString() === uri.toString()
      )
      if (editor) this.setDecorationRanges(editor, null)
    }
  }