From 3a6c91f1b3ced8b1a6b1964eb5b6b01c6fc6571a Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 7 Apr 2025 13:51:38 +0200 Subject: [PATCH] fix: update getChangedModules to reflect changes in VnLocation.vue --- test/cypress/docker/find/find.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/cypress/docker/find/find.js b/test/cypress/docker/find/find.js index 09a9874a4..8cc750481 100644 --- a/test/cypress/docker/find/find.js +++ b/test/cypress/docker/find/find.js @@ -14,10 +14,7 @@ function getGitDiff(options) { async function getChangedModules() { let changedModules = new Set(); - const changes = [ - 'src/components/RegularizeStockForm.vue', - 'src/components/FilterTravelForm.vue', - ]; //getGitDiff(process.argv); + const changes = ['src/components/common/VnLocation.vue']; //getGitDiff(process.argv); for (const change of changes) { if (!change) continue; if (!FINDED_PATHS.some((prefix) => change.startsWith(prefix))) return '';