Skip to content

Neotest runner for Mocha test framework

Notifications You must be signed in to change notification settings

srihari93/neotest-mocha

 
 

Repository files navigation

neotest-mocha

build

This plugin provides a Mocha adapter for the Neotest framework.

It is currently a work in progress. It will be transferred to the official neotest organisation (once it's been created).

Installation

Using packer:

use({
  'rcarriga/neotest',
  requires = {
    ...,
    'nvim-neotest/neotest-mocha',
  }
  config = function()
    require('neotest').setup({
      ...,
      adapters = {
        require('neotest-mocha')({
          command = "npm test --",
          env = { CI = true },
          cwd = function(path)
            return vim.fn.getcwd()
          end,
        }),
      }
    })
  end
})

Usage

See neotest's documentation for more information on how to run tests.

🎁 Contributing

Please raise a PR if you are interested in adding new functionality or fixing any bugs. When submitting a bug, please include an example spec that can be tested.

To trigger the tests for the adapter, run:

./scripts/test

Bug Reports

Please file any bug reports and I might take a look if time permits otherwise please submit a PR, this plugin is intended to be by the community for the community.

Inspiration

Thanks to haydenmeade and all the contributors from neotest-jest for doing the hard work.

About

Neotest runner for Mocha test framework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 93.5%
  • JavaScript 3.6%
  • Shell 2.4%
  • Vim Script 0.5%