Skip to content

Commit

Permalink
tests/openscad: disable test on darwin (broken)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Jan 4, 2024
1 parent 0dcc271 commit d9382ca
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions tests/test-sources/plugins/languages/openscad.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
{
{pkgs, ...}: let
# As of 2024-01-04, vimPlugins.openscad is broken on darwin
# TODO: re-enable this test when fixed
enable = !pkgs.stdenv.isDarwin;
in {
empty = {
plugins.openscad.enable = true;
plugins.openscad.enable = enable;
};

defaults = {
plugins.openscad = {
enable = true;
inherit enable;

fuzzyFinder = "skim";
cheatsheetWindowBlend = 15;
Expand All @@ -18,7 +22,7 @@

keymaps = {
plugins.openscad = {
enable = true;
inherit enable;

keymaps = {
enable = true;
Expand Down

0 comments on commit d9382ca

Please sign in to comment.