Skip to content

Commit b752606

Browse files
committed
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.
1 parent 26f1daa commit b752606

File tree

1 file changed

+8
-0
lines changed
  • tests/test-sources/plugins/lazyloading

1 file changed

+8
-0
lines changed

tests/test-sources/plugins/lazyloading/lz-n.nix

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ in
1212
lazy-load-neovim-plugin-configured =
1313
{ config, lib, ... }:
1414
{
15+
test.runNvim = false;
1516
plugins = {
1617
lz-n = {
1718
enable = true;
@@ -59,6 +60,7 @@ in
5960
lazy-load-lz-n-configured =
6061
{ config, lib, ... }:
6162
{
63+
test.runNvim = false;
6264
plugins = {
6365
codesnap = {
6466
enable = true;
@@ -139,6 +141,7 @@ in
139141
dont-lazy-load-colorscheme-automatically =
140142
{ config, ... }:
141143
{
144+
test.runNvim = false;
142145
colorschemes.catppuccin.enable = true;
143146
plugins = {
144147
lz-n = {
@@ -157,6 +160,7 @@ in
157160
dont-lazy-load-unconfigured =
158161
{ config, ... }:
159162
{
163+
test.runNvim = false;
160164
plugins = {
161165
neotest = {
162166
enable = true;
@@ -179,6 +183,7 @@ in
179183
lazy-load-colorscheme-properly =
180184
{ config, lib, ... }:
181185
{
186+
test.runNvim = false;
182187
colorschemes.catppuccin = {
183188
enable = true;
184189
lazyLoad.enable = true;
@@ -213,6 +218,7 @@ in
213218
lazy-load-enabled-automatically =
214219
{ config, ... }:
215220
{
221+
test.runNvim = false;
216222
plugins = {
217223
lz-n = {
218224
enable = true;
@@ -254,6 +260,7 @@ in
254260
wrap-functionless-luaConfig =
255261
{ config, ... }:
256262
{
263+
test.runNvim = false;
257264
plugins = {
258265
lz-n = {
259266
enable = true;
@@ -290,6 +297,7 @@ in
290297
use-provided-raw-after =
291298
{ config, ... }:
292299
{
300+
test.runNvim = false;
293301
plugins = {
294302
lz-n = {
295303
enable = true;

0 commit comments

Comments
 (0)