From e97b4c232a94f719dd1c9aaa9fec6e6aaed3792d Mon Sep 17 00:00:00 2001 From: jtkech Date: Tue, 17 Oct 2023 06:38:41 +0200 Subject: [PATCH] testing --- .../cypress-commands/dist/test-runner.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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`); } }