Giter VIP home page Giter VIP logo

Comments (5)

rcarriga avatar rcarriga commented on August 18, 2024 2

You'll have to create a custom consumer. I've just added some small docs neotest.consumers but the best examples will be the existing consumers. It'll also require using the plenary async library.

from neotest.

rcarriga avatar rcarriga commented on August 18, 2024

Use :h neotest.run.attach()to see the output of the process as it runs

from neotest.

wookayin avatar wookayin commented on August 18, 2024

I see! If I want to dispatch to either neotest.run.attach or neotest.summary.open depending the status of a test case (whether it's running or status), I'll need to have a programmatic API. How to get the (current) test object on the cursor or access its status (or other fields) programatically?

from neotest.

rcarriga avatar rcarriga commented on August 18, 2024

Closing this as the plugin allows for the desired behaviour

from neotest.

wookayin avatar wookayin commented on August 18, 2024

I still think this is worth adding as a built-in component because it would be universally useful (either show the progress if in progress, or open the result if completed).

Anyway, the below is how I ended up adding my own custom consumers, following the suggestion:

neotest.setup {
  ...
  -- Add custom consumers on your own
  consumers = {
    attach_or_output = M.custom_consumers.attach_or_output(),
  },
}

function M.custom_consumers.attach_or_output()
  local self = { name = "attach_or_output" }
  local neotest = require("neotest")

  ---@type neotest.Client
  local client = nil

  self = setmetatable(self, {
    __call = function(_, client_)
      client = client_
      return self
    end,
  })

  -- neotest.attach_or_run.open()
  function self.open(args)
    args = args or {}
    local pos = neotest.run.get_tree_from_args(args)
    if pos and client:is_running(pos:data().id) then
      neotest.run.attach()
    else
      neotest.output.open()
    end
  end

  return self
end

Usage example:

command! -nargs=0 NeotestOutput    lua require("neotest").attach_or_output.open()

from neotest.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.