From b752606681ded3f69e99ed568c7075b3578dce48 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Tue, 10 Dec 2024 10:07:13 -0600 Subject: [PATCH] tests/lazyloading/lz-n: runNvim false We don't need to run nvim and see what happens, these are just used for making sure we're generating the config appropriately. --- tests/test-sources/plugins/lazyloading/lz-n.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/test-sources/plugins/lazyloading/lz-n.nix b/tests/test-sources/plugins/lazyloading/lz-n.nix index 53b28318..f5a50a91 100644 --- a/tests/test-sources/plugins/lazyloading/lz-n.nix +++ b/tests/test-sources/plugins/lazyloading/lz-n.nix @@ -12,6 +12,7 @@ in lazy-load-neovim-plugin-configured = { config, lib, ... }: { + test.runNvim = false; plugins = { lz-n = { enable = true; @@ -59,6 +60,7 @@ in lazy-load-lz-n-configured = { config, lib, ... }: { + test.runNvim = false; plugins = { codesnap = { enable = true; @@ -139,6 +141,7 @@ in dont-lazy-load-colorscheme-automatically = { config, ... }: { + test.runNvim = false; colorschemes.catppuccin.enable = true; plugins = { lz-n = { @@ -157,6 +160,7 @@ in dont-lazy-load-unconfigured = { config, ... }: { + test.runNvim = false; plugins = { neotest = { enable = true; @@ -179,6 +183,7 @@ in lazy-load-colorscheme-properly = { config, lib, ... }: { + test.runNvim = false; colorschemes.catppuccin = { enable = true; lazyLoad.enable = true; @@ -213,6 +218,7 @@ in lazy-load-enabled-automatically = { config, ... }: { + test.runNvim = false; plugins = { lz-n = { enable = true; @@ -254,6 +260,7 @@ in wrap-functionless-luaConfig = { config, ... }: { + test.runNvim = false; plugins = { lz-n = { enable = true; @@ -290,6 +297,7 @@ in use-provided-raw-after = { config, ... }: { + test.runNvim = false; plugins = { lz-n = { enable = true;