Skip to content

Commit

Permalink
Fix test path in daemon.
Browse files Browse the repository at this point in the history
  • Loading branch information
saul-jb committed Apr 12, 2024
1 parent dfd21e8 commit bb0d1ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/daemon/test/utils/paths.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Path from 'path'
import { fileURLToPath } from 'url'

export const testPath = Path.join(Path.dirname(fileURLToPath(import.meta.url)), '../../test-out')
export const testPath = Path.join(Path.dirname(fileURLToPath(import.meta.url)), '../../../test-out')

export const mkTestPath = (name: string): string => Path.join(testPath, name)

0 comments on commit bb0d1ef

Please sign in to comment.