nix-community.nixvim/tests/test-sources/plugins/neotest/jest.nix

28 lines
512 B
Nix
Raw Normal View History

2023-11-22 09:38:52 +01:00
{
example = {
plugins = {
treesitter.enable = true;
neotest = {
enable = true;
adapters.jest = {
enable = true;
settings = {
jestCommand = "npm test --";
jestConfigFile = "custom.jest.config.ts";
2024-05-05 19:39:35 +02:00
env = {
CI = true;
};
2023-11-22 09:38:52 +01:00
cwd.__raw = ''
function(path)
return vim.fn.getcwd()
end
'';
};
};
};
};
};
}