diff --git a/test/OrchardCore.Tests.Functional/cypress-commands/dist/test-runner.js b/test/OrchardCore.Tests.Functional/cypress-commands/dist/test-runner.js index 78533e4ccb97..71eec7b39291 100644 --- a/test/OrchardCore.Tests.Functional/cypress-commands/dist/test-runner.js +++ b/test/OrchardCore.Tests.Functional/cypress-commands/dist/test-runner.js @@ -26,8 +26,8 @@ function deleteDirectory(dir) { // Copy the migrations recipe function copyMigrationsRecipeFile(dir) { - if (fs.existsSync('Recipes/migrations.recipe.json')) { - fs.copyFile('Recipes/migrations.recipe.json', `${dir}/Recipes/migrations.recipe.json`); + if (fs.existsSync('./Recipes/migrations.recipe.json')) { + fs.copyFile('./Recipes/migrations.recipe.json', `${dir}/Recipes/migrations.recipe.json`); global.log(`migrations recipe copied to ${dir}/Recipes`); } }