Skip to content

Commit

Permalink
fix: foo
Browse files Browse the repository at this point in the history
  • Loading branch information
dword-design committed Jul 5, 2020
1 parent 5ee70b4 commit a0c9113
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/api.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,14 @@ export default {
expect(await self()).toEqual(['@vendor/package-b', 'package-a'])
} finally {
console.log('unlinking ...')
await execa.command('yarn unlink', { cwd: 'package-a', stdio: 'inherit' })
await execa.command('yarn unlink', { cwd: 'package-b', stdio: 'inherit' })
await execa.command('yarn unlink', {
cwd: 'package-a',
stdio: 'inherit',
})
/*await execa.command('yarn unlink', {
cwd: 'package-b',
stdio: 'inherit',
})*/
console.log('removing ...')
await Promise.all([remove('package-b'), remove('package-a')])
console.log('done')
Expand Down

0 comments on commit a0c9113

Please sign in to comment.