Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

mini-test

URL: https://github.com/echasnovski/mini.test

Maintainers: Heitor Augusto

plugins.mini-test.enable

Whether to enable mini-test.

Type: boolean

Default: false

Example: true

Declared by:

plugins.mini-test.package

The mini-test package to use.

Type: package

Default: pkgs.vimPlugins.mini-test

Declared by:

plugins.mini-test.autoLoad

Whether to automatically load mini-test when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.mini-test.settings

Options provided to the require('mini.test').setup function.

Type: lua value

Default: { }

Example:

{
  collect = {
    emulate_busted = true;
    filter_cases = lib.nixvim.mkRaw "function(case) return true end";
    find_files = lib.nixvim.mkRaw ''
  function()
    return vim.fn.globpath('tests', '**/test_*.lua', true, true)
  end
'';
  };
  execute = {
    reporter = lib.nixvim.mkRaw "nil";
    stop_on_error = false;
  };
  script_path = "scripts/minitest.lua";
  silent = false;
}

Declared by: