Fix get_configurations test

This commit is contained in:
Ben Jackson 2021-04-13 18:01:10 +01:00
commit a41db89523
2 changed files with 6 additions and 0 deletions

View file

@ -18,6 +18,11 @@
}
},
"configurations": {
//
// NOTE:
// If you add to this, you must update tests/get_configurations.test.vim
//
"launch - netcoredbg": {
"adapter": "netcoredbg",
"configuration": {

View file

@ -12,6 +12,7 @@ function Test_Get_Configurations()
let configs = vimspector#GetConfigurations()
call assert_equal([
\ 'launch - netcoredbg',
\ 'launch - netcoredbg - with debug log',
\ 'launch - mono',
\ ], configs)