File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed
test/integration-tests/commands Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -46,11 +46,6 @@ suite("Dependency Commmands Test Suite", function () {
4646 const result = await vscode . commands . executeCommand ( Commands . RESOLVE_DEPENDENCIES ) ;
4747 expect ( result ) . to . be . true ;
4848 } ) ;
49-
50- test ( "Contract: spm update" , async ( ) => {
51- const result = await vscode . commands . executeCommand ( Commands . UPDATE_DEPENDENCIES ) ;
52- expect ( result ) . to . be . true ;
53- } ) ;
5449 } ) ;
5550
5651 suite ( "Full Work Flow Test Suite" , function ( ) {
@@ -126,5 +121,17 @@ suite("Dependency Commmands Test Suite", function () {
126121 const result = await vscode . commands . executeCommand ( Commands . UNEDIT_DEPENDENCY , item ) ;
127122 expect ( result ) . to . be . true ;
128123 } ) ;
124+
125+ test ( "Contract: spm update" , async ( ) => {
126+ await useLocalDependencyTest ( ) ;
127+
128+ // Contract: spm update
129+ let result = await vscode . commands . executeCommand ( Commands . UPDATE_DEPENDENCIES ) ;
130+ expect ( result ) . to . be . true ;
131+
132+ // Clean up
133+ result = await vscode . commands . executeCommand ( Commands . UNEDIT_DEPENDENCY , item ) ;
134+ expect ( result ) . to . be . true ;
135+ } ) ;
129136 } ) ;
130137} ) ;
You can’t perform that action at this time.
0 commit comments