Unverified Commit fb6aa56a authored by Austin Horstman's avatar Austin Horstman
Browse files

vimPlugins.neotest-playwright: fix hard dependency on telescope



Telescope is the supported picker, but the plugin checks if you have it
available before trying to use it. Allowing you to use the neotest
integration without telescope.

Signed-off-by: default avatarAustin Horstman <khaneliman12@gmail.com>
parent c5b01def
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -2187,11 +2187,14 @@ assertNoAdditions {
  };

  neotest-playwright = super.neotest-playwright.overrideAttrs {
    checkInputs = with self; [
      # Optional picker integration
      telescope-nvim
    ];
    dependencies = with self; [
      neotest
      nvim-nio
      plenary-nvim
      telescope-nvim
    ];
    # Unit test assert
    nvimSkipModules = "neotest-playwright-assertions";