PR-579798: trying to fix Cypress component testing.

This commit is contained in:
2023-03-07 11:45:13 -06:00
parent 69fa169a71
commit bac407a59b
3 changed files with 6 additions and 24 deletions

View File

@ -15,27 +15,15 @@ const dotEnvToParse = dotenv.config();
const externalCss = process.env.EXTERNAL_CSS === 'true' ? true : false;
const externalCssName = process.env.EXTERNAL_CSS_NAME ? process.env.EXTERNAL_CSS_NAME : 'index.css';
const alias = resolveTsAliases(path.resolve('tsconfig.json'));
const isWin = process.platform === 'win32';
const copyPatterns: {from: string, to: string}[] = [];
let copyFromUrl = `${path.resolve(__dirname)}/public/img`;
let copyFromUrlWin = `${path.resolve(__dirname)}\\public\\img`;
let copyToUrl = 'assets/img';
let copyToUrlWin = 'assets\\img';
const copyFromUrl = `${path.resolve(__dirname)}/public/img`;
const copyToUrl = 'assets/img';
if(isWin){
if(fs.existsSync(copyFromUrlWin)){
copyPatterns.push({
from: copyFromUrlWin, to: copyToUrlWin,
});
}
}else{
if(fs.existsSync(copyFromUrl)){
copyPatterns.push({
from: copyFromUrl, to: copyToUrl,
});
}
if(fs.existsSync(copyFromUrl)){
copyPatterns.push({
from: copyFromUrl, to: copyToUrl,
});
}
export default {