tests/image: re-enable as image-nvim has been fixed

https://github.com/NixOS/nixpkgs/pull/279564
This commit is contained in:
Gaetan Lepage 2024-01-18 16:55:35 +01:00 committed by Gaétan Lepage
parent 2566593aee
commit 2db27bce4f

View file

@ -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";
};
};