diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index d2d6a01..6b3988f 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -10,12 +10,15 @@ on: - 'src/**' - 'tests/playwright/**' - 'package.json' + + schedule: + - cron: '0 6 1,11,21 * *' workflow_dispatch: jobs: test: - timeout-minutes: 10 + timeout-minutes: 15 runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/tests/playwright/playwright.config.ts b/tests/playwright/playwright.config.ts index a33707f..317f9d3 100644 --- a/tests/playwright/playwright.config.ts +++ b/tests/playwright/playwright.config.ts @@ -11,6 +11,9 @@ import { defineConfig, devices } from '@playwright/test'; */ export default defineConfig({ testDir: './site.integrations.tests', + expect: { + timeout: 10000, + }, /* Run tests in files in parallel */ fullyParallel: true, /* Fail the build on CI if you accidentally left test.only in the source code. */