Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien-R44 committed Feb 18, 2024
1 parent 0c3edcb commit 432520c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/commands/add.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,10 @@ test.group('Install', (group) => {
ace.ui.switchMode('raw')
ace.prompt.trap('install').accept()

console.log(fileURLToPath(new URL('node_modules/foo', fs.baseUrl)))
console.log(new URL('node_modules/foo', fs.baseUrl).toString())
const command = await ace.create(Add, [
fileURLToPath(new URL('node_modules/foo', fs.baseUrl)),
// join(fileURLToPath(fs.baseUrl), 'node_modules', 'foo'),
new URL('node_modules/foo', fs.baseUrl).toString(),
'--foo',
'--auth=session',
'-x',
Expand Down

0 comments on commit 432520c

Please sign in to comment.