mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-09 16:54:36 +02:00
plugins/neotest/adapters/playwright: temporarily enable telescope when this adapter is used
https://github.com/NixOS/nixpkgs/pull/319314
This commit is contained in:
parent
4edfed1075
commit
34d75943ed
1 changed files with 6 additions and 1 deletions
|
@ -48,5 +48,10 @@ let
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = mapAttrsToList mkAdapter supportedAdapters;
|
imports = (mapAttrsToList mkAdapter supportedAdapters) ++ [
|
||||||
|
# TODO: Remove when https://github.com/NixOS/nixpkgs/pull/319314 reaches `nixos-unstable`
|
||||||
|
(mkIf config.plugins.neotest.adapters.playwright.enable {
|
||||||
|
plugins.telescope.enable = mkDefault true;
|
||||||
|
})
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue