Skip to content

Commit

Permalink
Merge pull request #2835 from yougotwill/fix/no-ref/integration_test_…
Browse files Browse the repository at this point in the history
…path_macOS

Fix/no ref/integration test path mac os
  • Loading branch information
Bilb authored Jul 20, 2023
2 parents f164a63 + 90cf82f commit a3811b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ts/test/automation/setup/beforeEach.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ function cleanUpOtherTest() {
alreadyCleanedWaiting = true;

const parentFolderOfAllDataPath = isMacOS()
? '~/Library/Application Support/'
? join(homedir(), 'Library', 'Application Support')
: isLinux()
? `${homedir()}/.config/`
? join(homedir(), '.config')
: null;
if (!parentFolderOfAllDataPath) {
throw new Error('Only macOS is currrently supported ');
Expand Down

0 comments on commit a3811b5

Please sign in to comment.