mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +02:00
Introduces the `test.runNvim` module option. Deprecates the historic `dontRun` argument passed to the test-derivation helpers. Soft-deprecates the `tests.dontRun` attr used in tests currently.
10 lines
187 B
Nix
10 lines
187 B
Nix
{ lib, ... }:
|
|
{
|
|
options.test = {
|
|
runNvim = lib.mkOption {
|
|
type = lib.types.bool;
|
|
description = "Whether to run `nvim` in the test.";
|
|
default = true;
|
|
};
|
|
};
|
|
}
|