We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f6a877 commit 3ad9f4aCopy full SHA for 3ad9f4a
1 file changed
test/shell/path.test.ts
@@ -69,10 +69,10 @@ describe('Path resource integration tests', async () => {
69
console.log('My path', path);
70
console.log('Temp dir 1', tempDir1);
71
console.log('Temp dir 2', tempDir2);
72
- console.log('Zshrc', fs.readFile(`${os.homedir()}/.zshrc`))
+ console.log('Zshrc', await fs.readFile(`${os.homedir()}/.zshrc`))
73
74
- // expect(path).to.include(tempDir1);
75
- // expect(path).to.include(tempDir2);
+ expect(path).to.include(tempDir1);
+ expect(path).to.include(tempDir2);
76
},
77
validateDestroy: async () => {
78
const { data: path } = await testSpawn('echo $PATH', { interactive: true })
0 commit comments