From 23a13c95ed3d6bb42d47c4c58c8c9d1c8846e7cf Mon Sep 17 00:00:00 2001 From: "ala'n (Alexey Stsefanovich)" Date: Thu, 8 Feb 2024 13:52:27 +0100 Subject: [PATCH] chore(e2e): fix server runner path --- e2e/jest-puppeteer.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/jest-puppeteer.config.js b/e2e/jest-puppeteer.config.js index e0a559e72..557c9127b 100644 --- a/e2e/jest-puppeteer.config.js +++ b/e2e/jest-puppeteer.config.js @@ -5,7 +5,7 @@ module.exports = { product: 'chrome' }, server: { - command: 'cd ../ & npm run start:test --workspace site', + command: 'cd ../site & npm run start:test', port: 3005, launchTimeout: 20000, debug: true