depot/third_party/home-manager/tests/modules/programs/vscode/tasks.nix
Default email 2eafb8192e Project import generated by Copybara.
GitOrigin-RevId: 176e455371a8371586e8a3ff0d56ee9f3ca2324e
2023-01-10 02:35:00 -07:00

43 lines
859 B
Nix

{ pkgs, config, ... }:
let
tasksFilePath = if pkgs.stdenv.hostPlatform.isDarwin then
"Library/Application Support/Code/User/tasks.json"
else
".config/Code/User/tasks.json";
tasks = {
version = "2.0.0";
tasks = [{
type = "shell";
label = "Hello task";
command = "hello";
}];
};
expectedTasks = pkgs.writeText "tasks-expected.json" ''
{
"tasks": [
{
"command": "hello",
"label": "Hello task",
"type": "shell"
}
],
"version": "2.0.0"
}
'';
in {
programs.vscode = {
enable = true;
package = pkgs.writeScriptBin "vscode" "" // { pname = "vscode"; };
userTasks = tasks;
};
nmt.script = ''
assertFileExists "home-files/${tasksFilePath}"
assertFileContent "home-files/${tasksFilePath}" "${expectedTasks}"
'';
}