diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 8ed5a72d4..4373f197e 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -27,7 +27,7 @@ jobs: working-directory: ./modules/fbs-core/web run: | export PW_ALLURE_RESULTS_DIR=allure-results - npx playwright test --reporter=line,allure-playwright + npx playwright test ./tests --reporter=line,allure-playwright - name: Generate Allure Report run: | npx allure generate allure-results --clean -o allure-report diff --git a/modules/fbs-core/web/playwright.config.js b/modules/fbs-core/web/playwright.config.js index c13c75978..8e53a6f69 100644 --- a/modules/fbs-core/web/playwright.config.js +++ b/modules/fbs-core/web/playwright.config.js @@ -2,7 +2,7 @@ import { defineConfig } from '@playwright/test'; export default defineConfig({ - testDir: './modules/fbs-core/web/tests', + testDir: './tests', timeout: 30000, retries: 0,