fix: resolved macOS config folder path for integration tests

we should use path.join instead of a hard strings for the application support folder
pull/2835/head
William Grant 2 years ago
parent 448c9dc14b
commit d06446441c

@ -1,5 +1,5 @@
import { Page } from '@playwright/test'; import { Page } from '@playwright/test';
import { readdirSync, rmdirSync } from 'fs-extra'; import { readdirSync, rm } from 'fs-extra';
import { join } from 'path'; import { join } from 'path';
import { homedir } from 'os'; import { homedir } from 'os';
import { isLinux, isMacOS } from '../../../OS'; import { isLinux, isMacOS } from '../../../OS';
@ -25,9 +25,9 @@ function cleanUpOtherTest() {
alreadyCleanedWaiting = true; alreadyCleanedWaiting = true;
const parentFolderOfAllDataPath = isMacOS() const parentFolderOfAllDataPath = isMacOS()
? '~/Library/Application Support/' ? join(homedir(), 'Library', 'Application Support')
: isLinux() : isLinux()
? `${homedir()}/.config/` ? join(homedir(), '.config')
: null; : null;
if (!parentFolderOfAllDataPath) { if (!parentFolderOfAllDataPath) {
throw new Error('Only macOS is currrently supported '); throw new Error('Only macOS is currrently supported ');
@ -43,7 +43,7 @@ function cleanUpOtherTest() {
allAppDataPath.map(folder => { allAppDataPath.map(folder => {
const pathToRemove = join(parentFolderOfAllDataPath, folder); const pathToRemove = join(parentFolderOfAllDataPath, folder);
rmdirSync(pathToRemove, { recursive: true }); rm(pathToRemove, { recursive: true }, () => pathToRemove);
}); });
console.info('...done'); console.info('...done');
} }

Loading…
Cancel
Save