Merge pull request #2835 from yougotwill/fix/no-ref/integration_test_path_macOS

Fix/no ref/integration test path mac os
pull/2838/head
Audric Ackermann 2 years ago committed by GitHub
commit a3811b5919
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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 ');

Loading…
Cancel
Save