Skip to content

Commit 3ad9f4a

Browse files
committed
Print out zshrc as well
1 parent 8f6a877 commit 3ad9f4a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/shell/path.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ describe('Path resource integration tests', async () => {
6969
console.log('My path', path);
7070
console.log('Temp dir 1', tempDir1);
7171
console.log('Temp dir 2', tempDir2);
72-
console.log('Zshrc', fs.readFile(`${os.homedir()}/.zshrc`))
72+
console.log('Zshrc', await fs.readFile(`${os.homedir()}/.zshrc`))
7373

74-
// expect(path).to.include(tempDir1);
75-
// expect(path).to.include(tempDir2);
74+
expect(path).to.include(tempDir1);
75+
expect(path).to.include(tempDir2);
7676
},
7777
validateDestroy: async () => {
7878
const { data: path } = await testSpawn('echo $PATH', { interactive: true })

0 commit comments

Comments
 (0)