File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
src/test/container-features Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,9 @@ describe('Lockfile', function () {
9090 it ( 'outdated command with json output' , async ( ) => {
9191 const workspaceFolder = path . join ( __dirname , 'configs/lockfile-outdated-command' ) ;
9292
93+ console . log ( 'HERE1' ) ;
94+ console . log ( ( await readLocalFile ( path . join ( workspaceFolder , '.devcontainer.json' ) ) ) . toString ( ) ) ;
95+
9396 const res = await shellExec ( `${ cli } outdated --workspace-folder ${ workspaceFolder } --output-format json` ) ;
9497 const response = JSON . parse ( res . stdout ) ;
9598
@@ -136,6 +139,9 @@ describe('Lockfile', function () {
136139 it ( 'outdated command with text output' , async ( ) => {
137140 const workspaceFolder = path . join ( __dirname , 'configs/lockfile-outdated-command' ) ;
138141
142+ console . log ( 'HERE2' ) ;
143+ console . log ( ( await readLocalFile ( path . join ( workspaceFolder , '.devcontainer.json' ) ) ) . toString ( ) ) ;
144+
139145 const res = await shellExec ( `${ cli } outdated --workspace-folder ${ workspaceFolder } --output-format text` ) ;
140146 const response = res . stdout ;
141147 // Count number of lines of output
You can’t perform that action at this time.
0 commit comments