From 2db27bce4fb0fbf7ac674b4f3900cbb72ea71737 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 18 Jan 2024 16:55:35 +0100 Subject: [PATCH] tests/image: re-enable as image-nvim has been fixed https://github.com/NixOS/nixpkgs/pull/279564 --- tests/test-sources/plugins/ui/image.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/tests/test-sources/plugins/ui/image.nix b/tests/test-sources/plugins/ui/image.nix index c0e61ab4..3b7f3dec 100644 --- a/tests/test-sources/plugins/ui/image.nix +++ b/tests/test-sources/plugins/ui/image.nix @@ -1,14 +1,10 @@ -let - # As of 2024-01-08, lua5.1-magick is broken - # TODO: re-enable this test when fixed - enable = false; -in { +{ empty = { # At runtime, the plugin tries to get the size of the terminal which doesn't exist in the # headless environment. tests.dontRun = true; - plugins.image.enable = enable; + plugins.image.enable = true; }; defaults = { @@ -17,7 +13,7 @@ in { tests.dontRun = true; plugins.image = { - inherit enable; + enable = true; backend = "kitty"; integrations = { @@ -61,7 +57,7 @@ in { tests.dontRun = true; plugins.image = { - inherit enable; + enable = true; backend = "ueberzug"; }; };