Skip to content

Commit 340a31c

Browse files
committed
test
1 parent 9b3a4c1 commit 340a31c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/test/container-features/lockfile.test.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)