-
Notifications
You must be signed in to change notification settings - Fork 236
/
recipes.json
26 lines (26 loc) · 947 Bytes
/
recipes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"test-branches": {
"cmd": "nvim --headless -c \"lua require(\\\"plenary.test_harness\\\").test_directory('tests/specs/branch_popup_spec.lua', {minimal_init = \\\"tests/init.lua\\\", sequential = true })\"",
"kind": "term",
"env": {
"NEOGIT_LOG_CONSOLE": true,
"NEOGIT_LOG_LEVEL": "debug"
}
},
"test-process": {
"cmd": "nvim --headless -c \"lua require(\\\"plenary.test_harness\\\").test_directory('./tests/specs/process_spec.lua', {minimal_init = \\\"tests/init.lua\\\", sequential = true })\"",
"kind": "term",
"env": {
"NEOGIT_LOG_CONSOLE": true,
"NEOGIT_LOG_LEVEL": "debug"
}
},
"test-all": {
"cmd": "nvim --headless -c \"lua require(\\\"plenary.test_harness\\\").test_directory('tests/specs', {minimal_init = \\\"tests/init.lua\\\", sequential = true })\"",
"kind": "term",
"env": {
"NEOGIT_LOG_CONSOLE": true,
"NEOGIT_LOG_LEVEL": "debug"
}
}
}