Skip to content

Commit 5944d31

Browse files
committed
Add logging
1 parent e2a4fbf commit 5944d31

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

test/shell/path.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,12 @@ describe('Path resource integration tests', async () => {
6464
}
6565
], {
6666
validateApply: async () => {
67-
const { data: path } = await testSpawn('echo $PATH', { interactive: true })
67+
const { data: path } = await testSpawn('echo $PATH', { interactive: true });
68+
69+
console.log('My path', path);
70+
console.log('Temp dir 1', tempDir1);
71+
console.log('Temp dir 2', tempDir2);
72+
6873
expect(path).to.include(tempDir1);
6974
expect(path).to.include(tempDir2);
7075
},

0 commit comments

Comments
 (0)